Skip to content
LangChain

guide registry for LangChain

guide.selfhelp/guide-registry

Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.

client:LangChain transport:streamable-http tools:4

Install guide registry in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "guide-registry": {
            "transport": "streamable_http",
            "url": "https://selfhelp.guide/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

guide registry in other clients