/** * CCCMemory - MCP Server * MCP server implementation with stdio transport */ /** * Main MCP Server */ export declare class ConversationMemoryServer { private server; private memory; private handlers; constructor(); /** * Get tool handler map for dynamic dispatch * Using a map prevents switch/case drift and makes it easy to add new tools */ private getToolHandlerMap; /** * Validate that tool definitions match handler implementations * Fails fast at startup if there's a drift between TOOLS and handlers */ private validateToolHandlers; /** * Setup MCP request handlers */ private setupHandlers; /** * Start the server */ start(): Promise; } //# sourceMappingURL=mcp-server.d.ts.map