Skip to content
VS Code

CAST Gatekeeper MCP Server for VS Code

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

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

client:VS Code transport:stdio runtime:oci

Install CAST Gatekeeper MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "host-control-panel",
      "description": "HOST_CONTROL_PANEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port-control-panel",
      "description": "PORT_CONTROL_PANEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dashboard-api-key",
      "description": "DASHBOARD_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-server-port",
      "description": "MCP_SERVER_PORT",
      "password": true
    }
  ],
  "servers": {
    "gatekeeper-mcp-server": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/castbuild/gatekeeper-mcp-server:3.0.0-beta5-46"
      ],
      "env": {
        "HOST_CONTROL_PANEL": "${input:host-control-panel}",
        "PORT_CONTROL_PANEL": "${input:port-control-panel}",
        "DASHBOARD_API_KEY": "${input:dashboard-api-key}",
        "MCP_SERVER_PORT": "${input:mcp-server-port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

CAST Gatekeeper MCP Server in other clients