/** * McpClientAdapter — wraps MCPClientWrapper as IMcpClient. */ import type { IMcpClient } from '@mcp-abap-adt/llm-agent'; import { type CallOptions, McpError, type McpTool, type McpToolResult, type Result } from '@mcp-abap-adt/llm-agent'; import type { MCPClientWrapper } from './client.js'; export declare class McpClientAdapter implements IMcpClient { private readonly client; private toolsCache; private lastHealthy; constructor(client: MCPClientWrapper); listTools(options?: CallOptions): Promise>; healthCheck(options?: CallOptions): Promise>; callTool(name: string, args: Record, options?: CallOptions): Promise>; } //# sourceMappingURL=adapter.d.ts.map