Skip to content
LangChain

CAST Gatekeeper MCP Server for LangChain

io.github.cast-extend/gatekeeper-mcp-server

CAST Dashboard MCP server for compliance, quality, and technical debt insights for AI agents

client:LangChain transport:stdio runtime:oci

Install CAST Gatekeeper MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "gatekeeper-mcp-server": {
            "transport": "stdio",
            "command": "docker",
            "args": ["run", "-i", "--rm", "docker.io/castbuild/gatekeeper-mcp-server:3.0.0-beta5-46"],
        }
})

tools = await client.get_tools()

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

CAST Gatekeeper MCP Server in other clients