import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { DynamicRegistry } from "./tools/registry.js"; /** * Create a configured MCP Server instance with all handlers registered. * Accepts a DynamicRegistry so each session can have its own isolated state. */ export declare function createMcpServer(registry: DynamicRegistry): Server;