Skip to content
LangChain

RIPE Atlas for LangChain

io.github.jrelph/ripe-atlas

RIPE Atlas network measurements — ping, traceroute, DNS, TLS, HTTP, NTP, and probes

client:LangChain transport:stdio runtime:npm

Install RIPE Atlas in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

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

tools = await client.get_tools()

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

RIPE Atlas in other clients