androir-mcp
An MCP server that allows AI agents to drive real Android devices via adb, capturing screenshots, reading the live UI tree, and performing actions like tap, swipe, and type.
README
<a id="readme-top"></a>
<div align="center">
<img src="assets/logo.svg" width="96" height="96" alt="androir-mcp logo">
androir-mcp
Drive real Android devices from any AI agent — see the screen, tap, swipe, type, over adb.
An independent, standalone Model Context Protocol server
that gives an AI agent a clean, safe automation surface for physical Android
devices and emulators: capture the screen, read the live UI tree, and drive
input — backed entirely by adb + uiautomator, no native code and no
device-side app.
</div>
[!NOTE] Requires
adb(Android platform-tools) and an Android device with USB debugging enabled (or an emulator). The server runs locally, holds no credentials, and talks only to the device(s)adbalready sees.
✨ What is androir-mcp?
androir-mcp is a standalone MCP server for automating Android over adb. It
is its own project — not a copy or port of anything — exposing a small,
conventional screen-read + input tool set that drops into any MCP-based agent
loop.
Everything is backed by adb and uiautomator: there is no native code and
nothing to install on the device. The agent shells out to adb (always as an
argv array — never a shell string) to capture screenshots, dump the UI
hierarchy, and send input events.
The key advantage on Android is that describe_screen returns the real UI
tree — exact element bounds and text straight from uiautomator — rather
than guessing from OCR. Tap coordinates come back as element centers and feed
straight into tap, so an agent can read a screen and act on it deterministically.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
🚀 Features
- 📸
screenshot— capture the device screen as a PNG (signature-validated). - 🌳
describe_screen— parse theuiautomatorUI tree into a flat list of labels with center tap coordinates (text / content-desc / class, entity-decoded). - 👆
tap/swipe/long_press— coordinate input in device pixels. - ⌨️
type_text— type arbitrary text safely (spaces, metacharacters, and unicode all type verbatim). - 🔘
press_key/press_home/press_back— named key events. - 📱
launch_app— launch by package name or a friendly name (resolved from the installed package list, cached per device). - 🔗
open_url— open anhttp(s)URL in the default browser. - 🔎
list_targets/status— enumerate connected devices and read device state, properties, and battery.
Safety by construction:
- 🛡️ argv-only adb — every command is an argument array, never a shell string, and any value handed to the device shell is single-quoted for it, so there is no shell-injection surface.
- ✅ strict serial validation — serials are checked against
[A-Za-z0-9.:_-](≤ 128 chars) before reaching any subprocess. - ⏱️ per-call timeout (default 30 s) with process-group kill on timeout.
- 🤫 scrubbed errors — concise messages only; no raw
adbstderr (which can leak serials/paths) and no host stack traces reach the model.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
🛠️ Tools
| Tool | adb implementation | Returns |
|---|---|---|
list_targets |
adb devices -l |
serials + model + state |
status |
adb -s S get-state (+ props, battery) |
device/offline/unauthorized + info |
screenshot |
adb -s S exec-out screencap -p |
PNG image content |
describe_screen |
adb -s S exec-out uiautomator dump /dev/tty (fallback: dump to /sdcard then exec-out cat) → parse XML |
element list: label / center tap (x,y) |
tap (x,y) |
adb -s S shell input tap X Y |
confirmation |
swipe (x1,y1,x2,y2,dur_ms?) |
adb -s S shell input swipe X1 Y1 X2 Y2 DUR |
confirmation |
long_press (x,y,dur_ms?) |
input swipe X Y X Y DUR (same point) |
confirmation |
type_text (text) |
adb -s S shell input text '<quoted>' (space→%s, single-quoted for the device shell) |
confirmation |
press_key (key) |
adb -s S shell input keyevent <KEYCODE> — names: home→3, back→4, enter→66, recents→187 |
confirmation |
press_home |
input keyevent 3 |
confirmation |
press_back |
input keyevent 4 |
confirmation |
launch_app (name or pkg) |
resolve name→package (from pm list packages), then monkey -p PKG -c android.intent.category.LAUNCHER 1 |
confirmation |
open_url (url) |
am start -a android.intent.action.VIEW -d '<url>' (http/https only) |
confirmation |
All tools take an optional serial; it defaults to the single connected device
and errors if the choice is ambiguous. Coordinates are in device pixels, so
describe_screen tap points feed straight into tap with no translation.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
🏁 Getting started
Prerequisites
-
adb(Android platform-tools) on yourPATH. -
An Android device with USB debugging enabled, or a running emulator. Confirm it's visible:
adb devices
Build
npm install
npm run build
Attach to an MCP client
Add the built server to your MCP client config:
{
"mcpServers": {
"androir": {
"command": "node",
"args": ["/path/to/androir-mcp/dist/index.js"]
}
}
}
Verify
With a device connected, run the self-check (it lists targets, takes a screenshot, and dumps the UI tree):
npm run selfcheck
It prints PASS when the three core tools work end-to-end against a real device.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
🤖 Use with an AI agent
Once androir is attached to your MCP client, give the agent a goal and let it
read the screen and act:
You: Open the Settings app, go to Wi-Fi, and tell me which network is connected.
Agent: calls
launch_app("settings")→describe_screen()(reads the labels + tap coordinates) →tap(x, y)on "Wi-Fi" →describe_screen()again → reports the connected network.
Because describe_screen returns exact element bounds and text, the agent taps
real coordinates rather than guessing from a screenshot.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
🗺️ Status & roadmap
- [x] Core tools —
screenshot,describe_screen,tap,swipe,long_press,type_text,press_key/home/back,launch_app,open_url,list_targets,status - [x]
uiautomatorXML parsing → labels + center tap coordinates (entity-decoded, malformed-XML tolerant) - [x] Device-shell-safe input escaping (no shell injection) + strict serial validation
- [x] Unit tests for the XML parser and the input-escaping logic
- [x] Pre-push secret-scan hook
- [ ] Recording / replay skills
- [ ] Multi-device parallel control
- [ ] Emulator-specific paths
- [ ] Published npm package /
npxbin
This README and roadmap fill in as the project progresses.
<p align="right"><a href="#readme-top">back to top ↑</a></p>
📄 License
<p align="right"><a href="#readme-top">back to top ↑</a></p>
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。