Skip to content
VS Code

devicecloud for VS Code

io.github.rubenglez/devicecloud

Triage failing DeviceCloud Maestro test runs: fail reasons, screenshots, flaky-flow analytics

client:VS Code transport:stdio runtime:npm

Install devicecloud in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "device-cloud-api-key",
      "description": "DEVICE_CLOUD_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "devicecloud": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "devicecloud-mcp"
      ],
      "env": {
        "DEVICE_CLOUD_API_KEY": "${input:device-cloud-api-key}"
      }
    }
  }
}

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

devicecloud in other clients