mcp-use TypeScript API
    Preparing search index...

    Interface LangChainAgentAction

    Tool invocation details yielded by the LangChain agent.

    interface LangChainAgentAction {
        log: string;
        tool: string;
        toolInput: any;
    }
    Index
    log: string

    LangChain action log.

    tool: string

    Tool name.

    toolInput: any

    Arguments generated by the model.