/** * Ido4 MCP Server — creates and configures the MCP server with all tools, resources, and prompts. * * Supports two modes: * - Full mode (profile provided): registers all tools immediately for the known methodology. * - Bootstrap mode (profile = null): registers only profile-independent tools. Profile-dependent * tools are deferred until init_project or create_sandbox writes the methodology config, * at which point activateMethodology() dynamically registers them. */ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import type { MethodologyProfile } from '@ido4/core'; export declare function createServer(profile: MethodologyProfile | null): McpServer; export declare function startServer(): Promise; //# sourceMappingURL=server.d.ts.map