/** * MCP 服务SQL执行功能简化测试 * 专门测试MCP服务的SQL执行能力 */ interface MCPToolResult { content: Array<{ type: string; text: string; }>; isError: boolean; } declare function callMCPTool(toolName: string, args: any): Promise; //# sourceMappingURL=mcp-service-simple.test.d.ts.map