Skip to content
LangChain

AgentUtility Browser Workflow for LangChain

ai.agentutility/mcp-browser-workflow

MCP server for the @agentutility browser-workflow cluster — pay-per-call x402 tools, no API keys…

client:LangChain transport:stdio runtime:npm

Install AgentUtility Browser Workflow in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-browser-workflow": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "@agentutility/mcp-browser-workflow"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

AgentUtility Browser Workflow in other clients