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
21 lines • 604 B
TypeScript
/**
* Configuration constants for the MCP server
*/
export declare const RESEARCH_CONFIG: {
readonly QUICK_RESEARCH: {
readonly POLL_INTERVAL_MS: 10000;
readonly MAX_ATTEMPTS: 15;
readonly TIMEOUT_MS: 200000;
readonly MODEL: "exa-research";
};
readonly DEEP_RESEARCH: {
readonly POLL_INTERVAL_MS: 15000;
readonly MAX_ATTEMPTS: 20;
readonly TIMEOUT_MS: 350000;
readonly MODEL: "exa-research-pro";
};
};
export declare const SERVER_CONFIG: {
readonly DEFAULT_LOG_LEVEL: "info";
};
//# sourceMappingURL=constants.d.ts.map