Skip to content
LangChain

instatus for LangChain

io.usefulapi/instatus

Manage status pages: components, incidents and maintenances; set live component status.

client:LangChain transport:streamable-http

Install instatus in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "instatus": {
            "transport": "streamable_http",
            "url": "https://instatus.usefulapi.io/mcp",
        }
})

tools = await client.get_tools()

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

instatus in other clients