/** v4-local parser for static MCP tools JSON. */ export interface McpStaticTool { name: string; description: string; raw: Record; } export type McpStaticToolsParseResult = { ok: true; tools: McpStaticTool[]; } | { ok: false; code: string; message: string; }; export declare function parseMcpStaticToolsJson(toolsJson: string): McpStaticToolsParseResult; export declare function selectMcpStaticTools(tools: McpStaticTool[], selected: string[]): McpStaticToolsParseResult; //# sourceMappingURL=mcpStaticTools.d.ts.map