@makafeli/n8n-workflow-builder
Version:
Model Context Protocol server for n8n workflow management
37 lines • 930 B
TypeScript
import { z } from "zod";
export declare const configSchema: z.ZodObject<{
n8nHost: z.ZodDefault<z.ZodString>;
n8nApiKey: z.ZodString;
}, "strip", z.ZodTypeAny, {
n8nHost: string;
n8nApiKey: string;
}, {
n8nApiKey: string;
n8nHost?: string | undefined;
}>;
export default function ({ config }: {
config: z.infer<typeof configSchema>;
}): import("@modelcontextprotocol/sdk/server").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