/** * Project Mind MCP Server * * The core MCP server that exposes all tools to Claude. * Handles tool registration, request routing, and error handling. * * HYBRID AUTOMATION: * - Tracks tool calls for checkpoint management * - Integrates session context mega-tool * - Coordinates with mark_complete for cleanup */ import { ProjectDatabase } from '../storage/database.js'; export declare class ProjectMindServer { private server; private db; private tools; private handlers; constructor(dbPath: string); private registerAllTools; private setupRequestHandlers; private setupErrorHandling; run(): Promise; shutdown(): void; getDatabase(): ProjectDatabase; } //# sourceMappingURL=mcp-server.d.ts.map