Skip to content
LangChain

mcp installation for LangChain

com.proabono/mcp-installation

Installs ProAbono into a website from the IDE: hosted pages, catalogue, customers, subscriptions.

client:LangChain transport:stdio runtime:npm

Install mcp installation in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

mcp installation in other clients