mcp-use TypeScript API
    Preparing search index...

    Interface ProviderToolCall

    Tool call requested by a model.

    interface ProviderToolCall {
        args: Record<string, unknown>;
        id: string;
        name: string;
    }
    Index
    args: Record<string, unknown>

    Parsed tool arguments.

    id: string

    Provider-generated call identifier.

    name: string

    Tool name exposed to the model.