Skip to content
LangChain

Occludra — MCP Gateway (AI Security Gateway) for LangChain

ai.occludra/mcp-gateway

Security & DLP proxy for MCP: tool-poisoning scans, PII redaction on tool args/results. Beta.

client:LangChain transport:streamable-http

Install Occludra — MCP Gateway (AI Security Gateway) in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "mcp-gateway": {
            "transport": "streamable_http",
            "url": "https://api.aisecuritygateway.ai/mcp",
        }
})

tools = await client.get_tools()

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

Occludra — MCP Gateway (AI Security Gateway) in other clients