/** * MCP Server implementation for markmv * * Provides Model Context Protocol server that exposes markmv functionality as tools for AI agents. * Tools, their input schemas, and validation all come directly from the Zod schemas in * schemas/index.ts, so a method's schema is the only place its shape is defined. Allows seamless * integration with Claude and other MCP clients. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** Create and configure the MCP server for markmv */ export declare function createMcpServer(): McpServer; /** Start the MCP server */ export declare function startMcpServer(): Promise; //# sourceMappingURL=mcp-server.d.ts.map