Skip to content
VS Code

Infraveil Control Plane for VS Code

io.github.infraveilhq/control-plane

Govern your backend control plane from your AI agent - signed, human-approval-gated.

client:VS Code transport:stdio runtime:pypi

Install Infraveil Control Plane in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "infraveil-base-url",
      "description": "INFRAVEIL_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "infraveil-client-id",
      "description": "INFRAVEIL_CLIENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "infraveil-agent-id",
      "description": "INFRAVEIL_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "infraveil-agent-token",
      "description": "INFRAVEIL_AGENT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "infraveil-agent-file",
      "description": "INFRAVEIL_AGENT_FILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "infraveil-verify-responses",
      "description": "INFRAVEIL_VERIFY_RESPONSES",
      "password": true
    }
  ],
  "servers": {
    "control-plane": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "infraveil-mcp"
      ],
      "env": {
        "INFRAVEIL_BASE_URL": "${input:infraveil-base-url}",
        "INFRAVEIL_CLIENT_ID": "${input:infraveil-client-id}",
        "INFRAVEIL_AGENT_ID": "${input:infraveil-agent-id}",
        "INFRAVEIL_AGENT_TOKEN": "${input:infraveil-agent-token}",
        "INFRAVEIL_AGENT_FILE": "${input:infraveil-agent-file}",
        "INFRAVEIL_VERIFY_RESPONSES": "${input:infraveil-verify-responses}"
      }
    }
  }
}

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

Infraveil Control Plane in other clients