Skip to content
LangChain

High Performance MCP Server for LangChain

io.github.aniayana/high-performance-mcp-server

High-performance, modular MCP v2 server with safe profiles, worker pool, caching, and stdio.

client:LangChain transport:stdio runtime:npm

Install High Performance MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

High Performance MCP Server in other clients