Skip to content
VS Code

adb-mcp: Android emulator and device control over adb for VS Code

io.github.iksnerd/adb-mcp

Drive an Android emulator or device over adb: screenshot, inspect UI, tap, type, build and test.

client:VS Code transport:stdio runtime:oci

Install adb-mcp: Android emulator and device control over adb in VS Code

.vscode/mcp.json

{
  "servers": {
    "adb-mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/iksnerd/adb-mcp:0.23.0"
      ]
    }
  }
}

Requires agent mode. MCP: Open User Configuration puts the same block in every workspace. VS Code docs

adb-mcp: Android emulator and device control over adb in other clients