Skip to content
LangChain

AgentHub - Lean MCP Orchestrator for LangChain

io.github.propstreet/agenthub

Enables coding agents to coordinate edits, reviews, and escalations without file locking conflicts

client:LangChain transport:stdio runtime:npm

Install AgentHub - Lean MCP Orchestrator in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

AgentHub - Lean MCP Orchestrator in other clients