Skip to content
LangChain

hello mcp registry for LangChain

io.github.jonathanhefner/hello-mcp-registry

A simple MCP server.

client:LangChain transport:stdio runtime:npm

Install hello mcp registry in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

hello mcp registry in other clients