#!/usr/bin/env node /** * Foundation MCP Server v2.0 * * Unified MCP server combining three pillars from Asimov's Foundation: * * - Demerzel: Codebase intelligence (R. Daneel Olivaw - 20,000 years of perfect memory) * - Gaia: Workflow patterns + Advanced memory (SQLite + FTS5 + BM25 for persistent context) * * Plus provider_* tools to inspect the shared LLM provider registry (used by * Demerzel's semantic search). The Seldon orchestration module was removed in v4.0.0. * * Usage: * npx @sashabogi/foundation * * Or add to ~/.claude.json: * { * "mcpServers": { * "foundation": { * "command": "npx", * "args": ["@sashabogi/foundation"] * } * } * } */ declare const SERVER_NAME = "foundation"; declare const SERVER_VERSION: any; /** * Start the Foundation MCP server * Can be called from CLI or run directly */ export declare function startServer(): Promise; export { SERVER_NAME, SERVER_VERSION }; //# sourceMappingURL=index.d.ts.map