Skip to content
VS Code

release gate for VS Code

io.github.vamsisudhakaran1/release-gate

Pre-deploy security auditor for AI agent code — the risks generic SAST misses.

client:VS Code transport:stdio runtime:pypi

Install release gate in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rg-mcp-allowed-roots",
      "description": "RG_MCP_ALLOWED_ROOTS",
      "password": true
    }
  ],
  "servers": {
    "release-gate": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "release-gate"
      ],
      "env": {
        "RG_MCP_ALLOWED_ROOTS": "${input:rg-mcp-allowed-roots}"
      }
    }
  }
}

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

release gate in other clients