import type { MutationIntent } from '../core/index.js'; import type { AdapterContext, ConsequenceAdapter } from './types.js'; export interface McpToolCall { tool: string; arguments?: Record; server?: string; } export declare class McpToolCallAdapter implements ConsequenceAdapter { source: "mcp"; parse(input: McpToolCall, context?: AdapterContext): MutationIntent[]; } export declare function mcpToolCallToMutation(call: McpToolCall, context?: AdapterContext): MutationIntent; //# sourceMappingURL=mcp.d.ts.map