Skip to content
LangChain

modelbound mcp for LangChain

io.github.modelbound/modelbound-mcp

Local-first MCP server for agent skills. Validate, lint, diff, and convert across IDEs.

client:LangChain transport:stdio runtime:npm

Install modelbound mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

modelbound mcp in other clients