UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 501 B
import type { User } from '@n8n/db'; import z from 'zod'; import type { ToolDefinition } from '../../mcp.types'; import type { NodeCatalogService } from '../../../../node-catalog'; import type { Telemetry } from '../../../../telemetry'; declare const inputSchema: { categories: z.ZodArray<z.ZodString, "many">; }; export declare const createGetSuggestedWorkflowNodesTool: (user: User, nodeCatalogService: NodeCatalogService, telemetry: Telemetry) => ToolDefinition<typeof inputSchema>; export {};