#!/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