#!/usr/bin/env node /** * Validate (when a schema exists) and dispatch one legacy-named tool call. * This is the single entry point used by the MCP CallTool handler and by the * router; it is NOT serialized itself — serialization happens once at the * request level so nested consolidated→legacy calls don't deadlock. */ export declare function executeTool(name: string, args: Record): Promise; /** Dispatch one tool call, consolidated or legacy. Exported for integration tests. */ export declare function dispatchTool(name: string, args: Record): Promise; export declare function main(): Promise;