Skip to content
LangChain

hyper mcp for LangChain

io.github.tuananh/hyper-mcp

📦️ A fast, secure MCP server that extends its capabilities through WebAssembly plugins

client:LangChain transport:stdio runtime:oci

Install hyper mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "hyper-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/tuananh/hyper-mcp:v0.1.6"],
        }
})

tools = await client.get_tools()

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

hyper mcp in other clients