Skip to content
LangChain

edgegate mcp for LangChain

io.github.frozo-ai/edgegate-mcp

Regression-test AI models on real Snapdragon and Jetson hardware, with signed evidence for CI.

client:LangChain transport:stdio runtime:npm

Install edgegate mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

edgegate mcp in other clients