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!

56 lines 1.7 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; task?: { [x: string]: unknown; ttl?: number | null | undefined; pollInterval?: number | undefined; } | undefined; _meta?: { [x: string]: unknown; progressToken?: string | number | undefined; "io.modelcontextprotocol/related-task"?: { [x: string]: unknown; taskId: string; } | undefined; } | undefined; } | undefined; }, { method: string; params?: { [x: string]: unknown; _meta?: { [x: string]: unknown; "io.modelcontextprotocol/related-task"?: { [x: string]: unknown; taskId: string; } | undefined; } | undefined; } | undefined; }, { [x: string]: unknown; _meta?: { [x: string]: unknown; "io.modelcontextprotocol/related-task"?: { [x: string]: unknown; taskId: string; } | undefined; } | undefined; }>; //# sourceMappingURL=index.d.ts.map