UNPKG

mcp-think-tank

Version:

Structured thinking and knowledge management tool for Model Context Protocol

14 lines 305 B
/** * Server configuration */ export interface ServerConfig { version: string; memoryPath: string; requestTimeout: number; toolScanTimeout: number; autoShutdownMs: number; debug: boolean; } declare let config: ServerConfig; export { config }; //# sourceMappingURL=config.d.ts.map