UNPKG

flowengine-n8n-workflow-builder

Version:

Build n8n workflows from text using AI. Connect to Claude, Cursor, or any LLM to generate and validate n8n workflows with expert knowledge and intelligent auto-fixing. Built by FlowEngine. Now with real node parameter schemas from n8n packages!

39 lines 1.09 kB
#!/usr/bin/env node /** * n8n Workflow Builder by FlowEngine v2.0 * * Complete workflow generation engine with 600+ nodes, AI intelligence, * security scanning, performance analysis, and template library. */ import { Server } from '@modelcontextprotocol/sdk/server/index.js'; /** * Create server function for Smithery compatibility * @param {Object} options - Configuration options (currently unused) * @returns {Server} The configured MCP server instance (not connected to transport) */ export default function createServer(options?: { config?: any; }): Server<{ method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; } | undefined; }>; //# sourceMappingURL=index.d.ts.map