GopherHole Agent Hub for LangChain
io.github.helixdata/gopherhole
Standards-based A2A hub. One MCP connection to thousands of agents, with shared persistent memory.
client:LangChain
transport:stdio
runtime:npm
Install GopherHole Agent Hub in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"gopherhole": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@gopherhole/mcp"],
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs