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 • 899 B
TypeScript
/**
* Research Topic Tool - Conducts quick, focused web research using Exa.ai's API
* Ported from VS Code extension to MCP server
*/
import { BaseMCPTool, MCPToolResponse } from './base';
export declare class ResearchTopicTool extends BaseMCPTool {
readonly name = "researchTopic";
readonly description = "Conduct quick, focused web research on software development topics using Exa.ai's powerful research capabilities for current information and practical implementation guidance.";
readonly inputSchema: {
type: "object";
properties: {
topic: {
type: "string";
description: string;
};
};
required: string[];
};
execute(args: any): Promise<MCPToolResponse>;
private conductQuickResearch;
private pollTask;
private formatResponse;
}
//# sourceMappingURL=researchTopic.d.ts.map