UNPKG

context-optimizer-mcp-server

Version:

Context optimization tools MCP server for AI coding assistants - compatible with GitHub Copilot, Cursor AI, and other MCP-supporting assistants

24 lines 877 B
/** * Deep Research Tool - Conducts comprehensive, in-depth research using Exa.ai's API * Ported from VS Code extension to MCP server */ import { BaseMCPTool, MCPToolResponse } from './base'; export declare class DeepResearchTool extends BaseMCPTool { readonly name = "deepResearch"; readonly description = "Conduct comprehensive, in-depth research using Exa.ai's exhaustive analysis capabilities for critical decision-making and complex architectural planning."; readonly inputSchema: { type: "object"; properties: { topic: { type: "string"; description: string; }; }; required: string[]; }; execute(args: any): Promise<MCPToolResponse>; private conductDeepResearch; private pollTask; private formatResponse; } //# sourceMappingURL=deepResearch.d.ts.map