/** * Pond MCP server. * * Speaks the Model Context Protocol over stdio (JSON-RPC 2.0, line-delimited * JSON). Each "tool" maps to one pond control-plane API call so an MCP-capable * client (Claude Code, Cursor, etc.) can manage capsules without shelling out. * * Auth: reads ~/.pond/credentials.json for the configured --api URL (default: * https://pond.run). Override with POND_MCP_API. */ export interface McpServerOptions { apiUrl: string; token: string; } export declare function runMcpServer(): void; //# sourceMappingURL=server.d.ts.map