Interface: WrapperToolCallRequestEvent
Defined in: src/batteries/llm/claude_code_cli/wire.ts:191
A real ADK tool the wrapper's MCP bridge is asking the adapter to execute.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
args | unknown | The call arguments Claude supplied, as received from the MCP CallTool request. | src/batteries/llm/claude_code_cli/wire.ts:199 |
requestId | string | Correlates with the requestId the adapter must echo back on its tool_call_response. | src/batteries/llm/claude_code_cli/wire.ts:195 |
tool | string | The bridged tool's raw name, matching ctx.tools.visible(). | src/batteries/llm/claude_code_cli/wire.ts:197 |
type | "tool_call_request" | Discriminant for the WrapperEvent union. | src/batteries/llm/claude_code_cli/wire.ts:193 |