MCP Android Adb Server MCP Server

2025-04-01: Added support for obtaining screen description content using visual models like `qwen2.5-vl`.

Local serverstdioGo

What is the MCP Android Adb Server MCP server?

Mcp android adb server mcp server lets Claude, Cursor and other MCP clients work with MCP Android Adb Server directly. 2025-04-01: Added support for obtaining screen description content using visual models like qwen2.5-vl.

What MCP Android Adb Server does

2025-04-01: Added support for obtaining screen description content using visual models like qwen2.5-vl.

Key capabilities

  • install_app : Install an application on the Android device
  • uninstall_app : Uninstall an application from the Android device
  • terminate_app : Terminate a running application on the Android device
  • launch_app : Launch an application on the Android device
  • list_app : List all installed applications on the Android device
  • is_app_installed : Check if a specific application is installed
  • unlock_screen : Unlock the Android device screen
  • lock_screen : Lock the Android device screen

Tools it exposes

Once connected, the assistant can call these 14 tools directly:

  • install_app — Install an application on the Android device
  • uninstall_app — Uninstall an application from the Android device
  • terminate_app — Terminate a running application on the Android device
  • launch_app — Launch an application on the Android device
  • list_app — List all installed applications on the Android device
  • is_app_installed — Check if a specific application is installed
  • unlock_screen — Unlock the Android device screen
  • lock_screen — Lock the Android device screen
  • is_screen_locked — Check if the Android device screen is locked
  • is_screen_active — Check if the Android device screen is active
  • input_text — Input text on the Android device
  • input_key — Input key press on the Android device
  • tap — Perform a tap operation on the screen at a specified position
  • long_tap — Perform a long press operation on the screen at a specified position

Installing the mcp android adb server mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 6 environment variables: DEVICE_ID, SCREEN_LOCK_PASSWORD, VISUAL_MODEL_ON, VISUAL_MODEL_API_KEY, VISUAL_MODEL_BASE_URL, VISUAL_MODEL_NAME. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. MCP Android Adb Server sits in that group, and the shape of its toolset — install_app, uninstall_app, terminate_app among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 14 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Android Adb Server.
  • Maintained by github-hewei, written in Go.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp android adb server mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
install_appInstall an application on the Android device
uninstall_appUninstall an application from the Android device
terminate_appTerminate a running application on the Android device
launch_appLaunch an application on the Android device
list_appList all installed applications on the Android device
is_app_installedCheck if a specific application is installed
unlock_screenUnlock the Android device screen
lock_screenLock the Android device screen
is_screen_lockedCheck if the Android device screen is locked
is_screen_activeCheck if the Android device screen is active
input_textInput text on the Android device
input_keyInput key press on the Android device
tapPerform a tap operation on the screen at a specified position
long_tapPerform a long press operation on the screen at a specified position

How to install the MCP Android Adb Server MCP server

### Configuration

```json
{
  "mcpServers": {
    "mcp-android-adb-server": {
      "command": "D:\\www\\golang\\mcp-android-adb-server\\mcp-android-adb-server.exe",
      "env": {
        "DEVICE_ID": "xxxxx",
        "SCREEN_LOCK_PASSWORD": "123456",
        "VISUAL_MODEL_ON": "true",
        "VISUAL_MODEL_API_KEY": "sk-or-xxxxxxxxxxxxxxxxxxx",
        "VISUAL_MODEL_BASE_URL": "https://openrouter.ai/api/v1/",
        "VISUAL_MODEL_NAME": "qwen/qwen2.5-vl-72b-instruct:free"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DEVICE_IDConfiguration value read at startup.Optional
SCREEN_LOCK_PASSWORDConfiguration value read at startup.Optional
VISUAL_MODEL_ONConfiguration value read at startup.Optional
VISUAL_MODEL_API_KEYCredential the server authenticates with.Yes
VISUAL_MODEL_BASE_URLEndpoint or connection string the server talks to.Yes
VISUAL_MODEL_NAMEConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Android Adb Server to install app.
  • Use MCP Android Adb Server to uninstall app.
  • Use MCP Android Adb Server to terminate app.

Frequently asked questions

It connects MCP Android Adb Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (install_app, uninstall_app, terminate_app, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Android Adb Server directly.