Skip to content
LangChain

Sealgate for LangChain

io.github.edison-watch/sealgate-mcp

Sealgate gateway proxy: list governed MCP servers and review agent session and audit status.

client:LangChain transport:streamable-http runtime:npm

Install Sealgate in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "sealgate-mcp": {
            "transport": "streamable_http",
            "url": "https://mcp.sealgate.ai/mcp/{api_key}/?client={label}",
        }
})

tools = await client.get_tools()

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

Sealgate in other clients