import { Server } from "@modelcontextprotocol/sdk/server/index.js"; /** * Creates an unconnected MCP server exposing archive snapshot, content, diff and provider tools. * * Built on the low-level `Server` even though the SDK marks it `@deprecated`, * because `McpServer.registerTool` accepts Standard Schema (Zod) only. TypeBox 1.x * does not implement Standard Schema, and this package's tool schemas are TypeBox, * shared in shape with the Pi and OMP extensions. The high-level API would force a * second definition of every parameter. * * @returns {Server} The operation result. */ declare function createMcpServer(): Server; export { createMcpServer };