Skip to content
LangChain

Rootly for LangChain

io.github.wyre-ai/rootly-mcp

MCP server for Rootly — incidents, alerts, escalations, and post-incident reports.

client:LangChain transport:stdio runtime:oci

Install Rootly in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "rootly-mcp": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "ghcr.io/wyre-ai/rootly-mcp:v1.2.6"],
        }
})

tools = await client.get_tools()

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

Rootly in other clients