mcp-use TypeScript API
    Preparing search index...

    Interface LangChainAgentStep

    A completed tool invocation yielded during LangChain agent execution.

    interface LangChainAgentStep {
        action: LangChainAgentAction;
        observation: string;
    }
    Index

    Tool invocation requested by the model.

    observation: string

    Serialized result returned by the tool.