Emitted when an MCP tool call has completed successfully.

interface ResponseMcpCallCompletedEvent {
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.mcp_call.completed";
}

Properties

item_id: string

The ID of the MCP tool call item that completed.

output_index: number

The index of the output item that completed.

sequence_number: number

The sequence number of this event.

type: "response.mcp_call.completed"

The type of the event. Always 'response.mcp_call.completed'.