Android-MCP
Enables AI agents to control Android devices and emulators through direct UI interaction, including clicking, swiping, typing, and navigation, with UI state inspection and automated testing capabilities.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Android-MCPopen the notification bar and tell me what notifications are showing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Android-MCP
Android-MCP is a lightweight, open-source tool that bridge between AI agents and Android devices. Running as an MCP server, it lets LLM agents perform real-world tasks such as app navigation, UI interaction and automated QA testing without relying on traditional computer-vision pipelines or preprogramed scripts.
Features
Direct Device Control: Click, swipe, drag, type, and press buttons on Android devices
UI State Inspection: Get device state with UI hierarchy and optional annotated screenshots
MCP Integration: Works with any MCP-compatible client (Claude Desktop, VS Code, etc.)
Emulator Support: Works with Android emulators (tested on emulator-5554)
Physical Device Support: Connect to real Android devices via ADB
Vision Capabilities: Generate annotated screenshots with numbered UI elements for vision-based AI agents
Test Recording: Record user interactions and export as executable test scripts (Python, JSON, or human-readable format)
Test Script Export: Export recorded tests as Python (ADB or uiautomator2), pytest, JSON, or human-readable format
Related MCP server: Android Mobile MCP
Requirements
An Android device or emulator with USB debugging enabled
uv (it fetches Python for you)
That's it. ADB is bundled, and the Portal helper app is installed onto the device automatically on first use.
Installation
claude mcp add android -- uvx --from git+https://github.com/HadyAhmed00/Android-MCP@main android-mcp-portal --emulatorDrop --emulator for a physical device, or pass --device <id> to pick one.
For any other MCP client, use the equivalent config:
{
"mcpServers": {
"android-mcp": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/HadyAhmed00/Android-MCP@main",
"android-mcp-portal",
"--emulator"
]
}
}
}Note: the PyPI release is not published yet, so install straight from GitHub as above. Once
android-mcp-portalis on PyPI this shortens toclaude mcp add android -- uvx android-mcp-portal@latest --emulator.
What happens on first use
ADB — uses
adbfrom your PATH, or falls back to the copy bundled with theadbutilsdependency, so no Android SDK install is required.Portal app — the fast state-reading backend needs the Portal app on the device. If it is missing, the server downloads the pinned APK, installs it, and enables its accessibility service, then verifies with a ping.
If any of that fails (some OEMs block enabling accessibility services over ADB), the server prints manual steps and keeps working on the slower UIAutomator2 backend.
Run it yourself any time with:
uvx --from git+https://github.com/HadyAhmed00/Android-MCP@main android-mcp-portal setup --device emulator-5554or ask the agent to call the Setup-Device tool.
Flags: --skip-bootstrap never touches the device, --portal-apk <path> installs a local APK.
The downloaded APK is cached per-user; set ANDROID_MCP_CACHE_DIR to move that cache.
From source (development)
git clone https://github.com/HadyAhmed00/Android-MCP.git
cd Android-MCP
uv sync
python main.py --emulator # or: python -m android_mcp --emulatorAvailable Tools
The MCP server exposes 19 tools for controlling Android devices and recording test cases:
1. State-Tool
Get the current state of the device including UI hierarchy and optional screenshot.
Parameters:
use_vision(bool, optional): Include annotated screenshot with labeled UI elements
Example:
Get device state with screenshot2. Click-Tool
Click on a specific coordinate on the screen.
Parameters:
x(int): X coordinatey(int): Y coordinate
Example:
Click on coordinates 540, 8003. Long-Click-Tool
Long press (hold) on a specific coordinate.
Parameters:
x(int): X coordinatey(int): Y coordinate
Example:
Long click on 540, 800 for 2 seconds4. Swipe-Tool
Perform a swipe gesture from one point to another.
Parameters:
x1(int): Starting X coordinatey1(int): Starting Y coordinatex2(int): Ending X coordinatey2(int): Ending Y coordinate
Example:
Swipe from top to bottom (refresh)5. Type-Tool
Type text at a specific coordinate (automatically focuses the field).
Parameters:
text(str): Text to typex(int): X coordinatey(int): Y coordinateclear(bool, optional): Clear existing text before typing
Example:
Type "hello world" into the search field6. Drag-Tool
Drag from one location and drop at another.
Parameters:
x1(int): Starting X coordinatey1(int): Starting Y coordinatex2(int): Ending X coordinatey2(int): Ending Y coordinate
Example:
Drag and drop item from position to trash7. Press-Tool
Press device buttons (home, back, power, volume, etc.).
Parameters:
button(str): Button name (back, home, power, volume_up, volume_down)
Example:
Press the back button8. Notification-Tool
Open the notification bar to access notifications.
Parameters: None
Example:
Open notification bar9. Wait-Tool
Wait for a specified duration (useful for allowing apps to load).
Parameters:
duration(int): Seconds to wait
Example:
Wait for 2 seconds9b. Click-By-Label
Tap an element by its label index from the most recent State-Tool output. Preferred over
raw coordinates. Indices are positional and only valid against the latest state — they
shift whenever the screen changes.
Parameters:
label(int): Index from the--- Interactive Elements ---list
9c. Setup-Device
Install the Portal helper app and enable its accessibility service. Use it when State-Tool
is slow or the fast backend is unavailable.
Parameters:
force(bool, optional): Reinstall even if the app already works
10. Start-Recording-Tool
Start recording test actions for later export and playback.
Parameters: None
Example:
Start recording test actions11. Stop-Recording-Tool
Stop recording test actions.
Parameters: None
Example:
Stop recording and finalize test12. Export-Test-Script
Export recorded test actions as an executable test script in multiple formats.
Parameters:
format(str): Export format - 'python', 'json', or 'readable' (default: 'python')filename(str, optional): Custom filename without extensiontest_name(str, optional): Custom test name for Python exports
Example:
Export recorded actions as a Python test script13. Clear-Recording-Tool
Clear all recorded test actions.
Parameters: None
Example:
Clear the recording14. Get-Recording-Stats-Tool
Get statistics about recorded test actions.
Parameters: None
Example:
Show recording statisticsArchitecture
The project is organized into three main modules:
main.py
Entry point that creates the FastMCP server
Defines and exposes all 14 tools
Handles command-line arguments (
--emulator)Integrates test recording functionality
src/mobile/
Mobile class: Manages device connection and state
MobileState: Data class representing device state
Captures screenshots and processes them
src/tree/
Tree class: Parses Android UI XML hierarchy
Extracts interactive elements (buttons, inputs, etc.)
Generates annotated screenshots with numbered labels
Helper utilities for coordinate extraction
src/recorder.py
TestRecorder class: Records user actions during testing
TestAction: Data class representing a single action
Supports multiple export formats (Python, JSON, Readable)
Generates fully independent ADB-based Python scripts
Exports structured test data for CI/CD integration
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityBmaintenanceA 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.14826MIT
- FlicenseAqualityCmaintenanceEnables AI agents to interact with Android devices through UI manipulation, screen capture, touch gestures, text input, and app management via ADB. Provides comprehensive mobile automation capabilities including element detection, navigation, and application control for Android device testing and interaction.95
- AlicenseAqualityDmaintenanceEnables AI agents to fully control Android devices through over 30 tools for app management, UI automation, and vision-based analysis via ADB. It supports multi-device management, action recording, and smart execution strategies ranging from UI hierarchy parsing to coordinate-based interaction.371371MIT
- AlicenseBqualityBmaintenanceEnables AI assistants to interact with Android devices and emulators via ADB, providing tools for screenshots, UI inspection, touch and text input, app management, and device control.426717MIT
Related MCP Connectors
Control Android TV from any AI. 38 MCP tools: playback, recap, recommend, smart-home, schedules.
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Turns any agent into a full agentic application — branded, interactive screens generated at runtime.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HadyAhmed00/Android-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server