UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 441 B
import type { User } from '@n8n/db'; import z from 'zod'; import type { ToolDefinition } from '../../mcp.types'; import type { NodeTypes } from '../../../../node-types'; import type { Telemetry } from '../../../../telemetry'; declare const inputSchema: { code: z.ZodString; }; export declare const createValidateWorkflowCodeTool: (user: User, telemetry: Telemetry, nodeTypes: NodeTypes) => ToolDefinition<typeof inputSchema>; export {};