Skip to content
Cursor

adb-mcp: Android emulator and device control over adb for Cursor

io.github.iksnerd/adb-mcp

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

client:Cursor transport:stdio runtime:oci

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

~/.cursor/mcp.json · windows: %USERPROFILE%\.cursor\mcp.json

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

Use .cursor/mcp.json in a project root instead to scope it to that project. Cursor merges both. Cursor docs

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