Skip to content
LangChain

pulse subregistry for LangChain

com.pulsemcp/pulse-subregistry

MCP server providing access to the PulseMCP Sub-Registry for browsing and discovering MCP servers.

client:LangChain transport:stdio runtime:npm

Install pulse subregistry in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

pulse subregistry in other clients