mcp-use TypeScript API
    Preparing search index...

    Interface LlmToolCallArgsDeltaEvent

    Incremental JSON arguments for a model-requested tool call.

    interface LlmToolCallArgsDeltaEvent {
        argsDelta: string;
        index: number;
        toolCallId: string;
        toolName: string;
        type: "tool-call-args-delta";
    }
    Index
    argsDelta: string

    Partial JSON fragment. Concatenate all fragments before parsing.

    index: number

    Stable per-turn index for tracking parallel calls.

    toolCallId: string

    Provider-generated tool call identifier.

    toolName: string

    Tool name exposed to the model.

    type: "tool-call-args-delta"

    Event discriminator.