Skip to content
VS Code

GVNR by Instruxi for VS Code

io.gvnr/enforcer-governor

GVNR (gvnr.io): stops AI agents overspending and running dangerous commands before they act.

client:VS Code transport:stdio runtime:npm

Install GVNR by Instruxi in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "governor-port",
      "description": "GOVERNOR_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "gvnr-agent",
      "description": "GVNR_AGENT",
      "password": true
    }
  ],
  "servers": {
    "enforcer-governor": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "enforcer-governor"
      ],
      "env": {
        "GOVERNOR_PORT": "${input:governor-port}",
        "GVNR_AGENT": "${input:gvnr-agent}"
      }
    }
  }
}

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

GVNR by Instruxi in other clients