context-engine-mcp
Version:
Context engine MCP server for comprehensive project analysis and multi-file editing
16 lines • 595 B
TypeScript
import { ServerConfig } from '../types/index.js';
export declare const DEFAULT_CONFIG: ServerConfig;
export declare class ConfigManager {
private config;
constructor(userConfig?: Partial<ServerConfig>);
get<K extends keyof ServerConfig>(key: K): ServerConfig[K];
set<K extends keyof ServerConfig>(key: K, value: ServerConfig[K]): void;
getAll(): ServerConfig;
update(updates: Partial<ServerConfig>): void;
validate(): {
isValid: boolean;
errors: string[];
};
}
export declare const configManager: ConfigManager;
//# sourceMappingURL=index.d.ts.map