UNPKG

n8n

Version:

n8n Workflow Automation Tool

12 lines (11 loc) 609 B
import type { User } from '@n8n/db'; import z from 'zod'; import type { NodeCatalogService } from '../../../../node-catalog'; import type { AiGatewayService } from '../../../../services/ai-gateway.service'; import type { Telemetry } from '../../../../telemetry'; import type { ToolDefinition } from '../../mcp.types'; declare const inputSchema: { queries: z.ZodArray<z.ZodString, "many">; }; export declare const createSearchWorkflowNodesTool: (user: User, nodeCatalogService: NodeCatalogService, telemetry: Telemetry, aiGatewayService: AiGatewayService) => ToolDefinition<typeof inputSchema>; export {};