Skip to content
LangChain

Edge-Latency-Guard for LangChain

io.github.evozim/edge-latency-guard

CDN and edge computing latency monitor analyzing network hops.

client:LangChain transport:sse

Install Edge-Latency-Guard in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "edge-latency-guard": {
            "transport": "streamable_http",
            "url": "https://edge-latency-guard-mcp.vercel.app/api/mcp",
        }
})

tools = await client.get_tools()

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

Edge-Latency-Guard in other clients