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
26 lines • 823 B
JavaScript
/**
* Configuration constants for the MCP server
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SERVER_CONFIG = exports.RESEARCH_CONFIG = void 0;
exports.RESEARCH_CONFIG = {
// Quick research timeouts and limits
QUICK_RESEARCH: {
POLL_INTERVAL_MS: 10000, // 10 seconds
MAX_ATTEMPTS: 15, // 15 attempts = 150 seconds total
TIMEOUT_MS: 200000, // 200 seconds
MODEL: 'exa-research'
},
// Deep research timeouts and limits
DEEP_RESEARCH: {
POLL_INTERVAL_MS: 15000, // 15 seconds
MAX_ATTEMPTS: 20, // 20 attempts = 300 seconds total
TIMEOUT_MS: 350000, // 350 seconds
MODEL: 'exa-research-pro'
}
};
exports.SERVER_CONFIG = {
DEFAULT_LOG_LEVEL: 'info'
};
//# sourceMappingURL=constants.js.map
;