mcp-use TypeScript API
    Preparing search index...

    Interface AgentAction

    Tool invocation details in an AgentStep.

    interface AgentAction {
        log: string;
        tool: string;
        toolInput: Record<string, unknown>;
    }
    Index
    log: string

    Model log associated with the action.

    tool: string

    Tool name exposed to the model.

    toolInput: Record<string, unknown>

    Arguments generated by the model.