Skip to content
VS Code

argus for VS Code

io.github.ironclawdevs27/argus

Automated web QA via Chrome DevTools MCP — a11y, security, visual, env diff, CI; Aegis redaction.

client:VS Code transport:stdio runtime:npm

Install argus in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "target-dev-url",
      "description": "TARGET_DEV_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "target-staging-url",
      "description": "TARGET_STAGING_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "slack-bot-token",
      "description": "SLACK_BOT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "figma-api-token",
      "description": "FIGMA_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "argus-redact-sensitive",
      "description": "ARGUS_REDACT_SENSITIVE",
      "password": true
    }
  ],
  "servers": {
    "argus": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "argusqa-os"
      ],
      "env": {
        "TARGET_DEV_URL": "${input:target-dev-url}",
        "TARGET_STAGING_URL": "${input:target-staging-url}",
        "SLACK_BOT_TOKEN": "${input:slack-bot-token}",
        "FIGMA_API_TOKEN": "${input:figma-api-token}",
        "ARGUS_REDACT_SENSITIVE": "${input:argus-redact-sensitive}"
      }
    }
  }
}

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

argus in other clients