Skip to content
LangChain

runtime support mcp for LangChain

io.github.mrfentmen/runtime-support-mcp

Summarize runtime declarations across local manifests and CI files without returning versions,...

client:LangChain transport:stdio runtime:npm

Install runtime support mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "runtime-support-mcp": {
            "transport": "stdio",
            "command": "npx",
            "args": ["-y", "runtime-support-mcp"],
        }
})

tools = await client.get_tools()

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

runtime support mcp in other clients