Skip to content
VS Code

agent browser for VS Code

io.github.aetherai3/agent-browser

Self-hosted Chrome for AI agents, with a live noVNC view a human can take over.

client:VS Code transport:stdio runtime:npm

Install agent browser in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agent-browser-url",
      "description": "AGENT_BROWSER_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agent-browser-controller-token",
      "description": "AGENT_BROWSER_CONTROLLER_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agent-browser-observer-token",
      "description": "AGENT_BROWSER_OBSERVER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "agent-browser": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "aether-browser"
      ],
      "env": {
        "AGENT_BROWSER_URL": "${input:agent-browser-url}",
        "AGENT_BROWSER_CONTROLLER_TOKEN": "${input:agent-browser-controller-token}",
        "AGENT_BROWSER_OBSERVER_TOKEN": "${input:agent-browser-observer-token}"
      }
    }
  }
}

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

agent browser in other clients