/** * MCP Server for ts-repair * * Exposes ts-repair functionality via Model Context Protocol (MCP). * This server can be used with Claude Code, OpenCode, Codex CLI, and other * MCP-compatible agents. * * Usage: * ts-repair mcp-server * * The server communicates over stdio using JSON-RPC. */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; /** * Create and configure the MCP server */ export declare function createMcpServer(): McpServer; /** * Run the MCP server over stdio */ export declare function runMcpServer(): Promise; //# sourceMappingURL=server.d.ts.map