Android MCP

v1.0.0Browser Automationstable

A lightweight bridge enabling AI agents to perform real-world tasks on Android devices such as app navigation, UI interaction, and automated QA testing without requiring computer-vision pipelines or preprogrammed scripts.

aiandroidautomationmcp-server
Share:
615
Stars
0
Downloads
0
Weekly
0/5

What is Android MCP?

Android MCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to lightweight bridge enabling ai agents to perform real-world tasks on android devices such as app navigation, ui interaction, and automated qa testing without requiring computer-vision pipelines or pre...

A lightweight bridge enabling AI agents to perform real-world tasks on Android devices such as app navigation, UI interaction, and automated QA testing without requiring computer-vision pipelines or preprogrammed scripts.

This server falls under the Browser Automation category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • A lightweight bridge enabling AI agents to perform real-worl

Use Cases

Real-world Android device automation
UI interaction without computer vision
Automated QA testing on Android
CursorTouch

Maintainer

LicenseMIT License
Languagepython
Versionv1.0.0
UpdatedMay 20, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx android-mcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Android MCP

Android MCP is an open-source bridge that lets AI agents control Android devices and emulators through ADB and the Android Accessibility API without requiring computer-vision pipelines or pre-scripted automation. It runs as an MCP server, exposing tools for launching apps, tapping, swiping, inputting text, reading view hierarchies, capturing screenshots, and executing shell commands. Developers and QA engineers can use it to automate end-to-end mobile testing, navigate apps conversationally, or let an LLM agent perform real-world Android tasks on their behalf.

Prerequisites

  • Python 3.13 (required; Python 3.14 has a known dependency issue on Windows)
  • ADB (Android Debug Bridge) installed and accessible on PATH
  • An Android 10+ device with USB Debugging enabled, or a running Android emulator
  • uvx installed (from the uv Python toolchain) for the recommended setup
  • An MCP client such as Claude Desktop
1

Install ADB and verify device connection

Install Android platform-tools for your OS and confirm ADB can see your device or emulator before configuring the server.

adb devices
# Expected output:
# List of devices attached
# emulator-5554   device
2

Connect via Wi-Fi (optional)

If you prefer a wireless connection instead of USB, connect your device to ADB over TCP/IP on port 5555.

adb connect 192.168.1.3:5555
adb devices
3

Add the server to Claude Desktop configuration

Edit your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or %APPDATA%\Claude\claude_desktop_config.json on Windows) to add the android-mcp entry using uvx.

4

Configure Wi-Fi device environment variables (if needed)

If your device is connected over Wi-Fi rather than USB, add ANDROID_MCP_CONNECTION and ANDROID_MCP_HOST to the env block in your MCP config so the server targets the correct IP address.

5

Restart Claude Desktop

Restart Claude Desktop to load the new server. The server connects lazily on first tool call and will auto-detect the first available ADB device if no specific device is configured.

Android MCP Examples

Client configuration

Claude Desktop configuration for Android MCP using uvx with Python 3.13. Includes optional Wi-Fi device environment variables.

{
  "mcpServers": {
    "android-mcp": {
      "command": "uvx",
      "args": ["--python", "3.13", "android-mcp"],
      "env": {
        "ANDROID_MCP_CONNECTION": "wifi",
        "ANDROID_MCP_HOST": "192.168.1.3"
      }
    }
  }
}

Prompts to try

Example prompts that leverage the Android MCP's device control tools.

- "Open the Settings app and navigate to Wi-Fi settings"
- "Take a screenshot of the current screen and describe what's on it"
- "Type 'hello world' into the focused text field and press Enter"
- "Swipe up three times to scroll through the app list and find the Calculator app"
- "Run the shell command 'pm list packages' and show me all installed packages"

Troubleshooting Android MCP

ADB device shows as 'unauthorized' or does not appear

On the Android device, check the notification shade or USB debugging prompt and tap 'Allow' to authorize your computer's RSA key. If the prompt never appears, try a different USB cable or port, then run 'adb kill-server && adb start-server'.

Server fails to start on Windows with Python 3.14

Python 3.14 has a known transitive dependency issue with pywin32 on Windows. Use Python 3.13 explicitly by passing --python 3.13 to uvx as shown in the configuration example.

Tools time out or actions do not appear on screen

Typical action latency is 2-4 seconds. If tools consistently time out, ensure the device is not in sleep mode, check that USB debugging is still enabled, and verify the ADB connection is stable with 'adb devices'.

Frequently Asked Questions about Android MCP

What is Android MCP?

Android MCP is a Model Context Protocol (MCP) server that lightweight bridge enabling ai agents to perform real-world tasks on android devices such as app navigation, ui interaction, and automated qa testing without requiring computer-vision pipelines or preprogrammed scripts. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Android MCP?

Follow the installation instructions on the Android MCP GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Android MCP?

Android MCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Android MCP free to use?

Yes, Android MCP is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Browse More Browser Automation MCP Servers

Explore all browser automation servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "android-mcp": { "command": "npx", "args": ["-y", "android-mcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Android MCP?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides