Skip to content
LangChain

AgentUtility Compose for LangChain

ai.agentutility/mcp-compose

MCP server for the @agentutility compose cluster — pay-per-call x402 tools, no API keys, USDC on…

client:LangChain transport:stdio runtime:npm

Install AgentUtility Compose in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

AgentUtility Compose in other clients