Skip to content
VS Code

VibeView for VS Code

io.github.vibeview/vibeview

Drive live iOS, Android, Apple TV and Android TV devices in the cloud to verify app changes.

client:VS Code transport:stdio runtime:npm

Install VibeView in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vibeview-api-token",
      "description": "VIBEVIEW_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "vibeview": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vibeview"
      ],
      "env": {
        "VIBEVIEW_API_TOKEN": "${input:vibeview-api-token}"
      }
    }
  }
}

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

VibeView in other clients