Skip to content
VS Code

Stealth Agent Browser for VS Code

io.github.ykshah1309/stealth-agent-browser-mcp

Stealth Chromium MCP server with hybrid AOM + Set-of-Mark vision and Readability extraction.

client:VS Code transport:stdio runtime:npm

Install Stealth Agent Browser in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sab-headless",
      "description": "SAB_HEADLESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sab-stealth-level",
      "description": "SAB_STEALTH_LEVEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sab-proxy-server",
      "description": "SAB_PROXY_SERVER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sab-proxy-username",
      "description": "SAB_PROXY_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sab-proxy-password",
      "description": "SAB_PROXY_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sab-user-data-dir",
      "description": "SAB_USER_DATA_DIR",
      "password": true
    }
  ],
  "servers": {
    "stealth-agent-browser-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stealth-agent-browser-mcp"
      ],
      "env": {
        "SAB_HEADLESS": "${input:sab-headless}",
        "SAB_STEALTH_LEVEL": "${input:sab-stealth-level}",
        "SAB_PROXY_SERVER": "${input:sab-proxy-server}",
        "SAB_PROXY_USERNAME": "${input:sab-proxy-username}",
        "SAB_PROXY_PASSWORD": "${input:sab-proxy-password}",
        "SAB_USER_DATA_DIR": "${input:sab-user-data-dir}"
      }
    }
  }
}

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

Stealth Agent Browser in other clients