/** * MCP Tools * Define tools that AI agents can execute */ import { type Tool } from '@modelcontextprotocol/sdk/types.js'; /** * Get available MCP tools (including system tools) */ export declare function getMcpTools(): Tool[]; /** * Execute an MCP tool */ export declare function executeMcpTool(toolName: string, args: Record): Promise; //# sourceMappingURL=tools.d.ts.map