Skip to content
VS Code

android for VS Code

io.github.martingeidobler/android

Control Android devices and emulators via ADB — screenshots, UI automation, and logcat.

client:VS Code transport:stdio runtime:npm

Install android in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "android-home",
      "description": "ANDROID_HOME",
      "password": true
    }
  ],
  "servers": {
    "android": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "android-mcp-server"
      ],
      "env": {
        "ANDROID_HOME": "${input:android-home}"
      }
    }
  }
}

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

android in other clients