Skip to content
LangChain

What's Inherited for LangChain

io.github.stcmain/whats-inherited-mcp

What a checkout tells your agent to do: instruction files, hooks, declared MCP servers.

client:LangChain transport:stdio runtime:npm

Install What's Inherited in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

What's Inherited in other clients