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
28 lines • 686 B
TypeScript
/**
* Configuration schema definitions for the MCP server
*
* All configuration is loaded from environment variables
*/
export interface MCPServerConfig {
security: {
allowedBasePaths: string[];
maxFileSize: number;
commandTimeout: number;
sessionTimeout: number;
};
llm: {
provider: 'gemini' | 'claude' | 'openai';
model?: string;
geminiKey?: string;
claudeKey?: string;
openaiKey?: string;
};
research: {
exaKey?: string;
};
server: {
sessionStoragePath?: string;
logLevel: 'error' | 'warn' | 'info' | 'debug';
};
}
//# sourceMappingURL=schema.d.ts.map