Server data from the Official MCP Registry
Android MCP — ADB-based device, apps, UI, logcat, emulator, files, system, debug
Android MCP — ADB-based device, apps, UI, logcat, emulator, files, system, debug
Valid MCP server (3 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
5 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: ADB_PATH
Environment variable: ANDROID_HOME
Environment variable: ANDROID_SERIAL
Environment variable: ANDROID_TOOLS
Environment variable: ANDROID_DISABLE
Environment variable: ANDROID_MCP_ALLOW_SHELL
Environment variable: ANDROID_MCP_ALLOW_WRITE
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-us-all-android": {
"env": {
"ADB_PATH": "your-adb-path-here",
"ANDROID_HOME": "your-android-home-here",
"ANDROID_TOOLS": "your-android-tools-here",
"ANDROID_SERIAL": "your-android-serial-here",
"ANDROID_DISABLE": "your-android-disable-here",
"ANDROID_MCP_ALLOW_SHELL": "your-android-mcp-allow-shell-here",
"ANDROID_MCP_ALLOW_WRITE": "your-android-mcp-allow-write-here"
},
"args": [
"-y",
"@us-all/android-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
The Android diagnostic & forensic MCP — when an app crashes, leaks memory, drains battery, or behaves unexpectedly, this is what you point at the device.
75 tools across logcat / dumpsys / package internals / system properties / processes. 5 MCP Prompts (crash-investigation, memory-leak-detection, permission-audit, app-startup-profile, ui-element-locator) and a
device-healthaggregation. Pure ADB, no Appium / uiautomator2 dependency. 2-tier security (write + shell gates).
dumpsys (mem/gfx/cpu), getprop, processes, package internals, app intents, port forwards. Cross-platform competitors hide this surface.crash-investigation, memory-leak-detection, ui-element-locator, app-startup-profile, permission-audit. Workflow templates the model invokes directly.device-health (battery + memory + cpu + network in one call), analyze-app (package info + memory + activities).ANDROID_MCP_ALLOW_WRITE (gates installs/taps/pushes) and ANDROID_MCP_ALLOW_SHELL (gates arbitrary adb shell) are separate flags. Distinct trust levels.child_process.ANDROID_TOOLS/ANDROID_DISABLE 9 categories, search-tools meta.device-health renders as a snapshot card on ChatGPT clients (battery, RAM, Wi-Fi + 4-section grid) via _meta["openai/outputTemplate"]. Claude clients receive the same JSON content.MCP_TRANSPORT=http for ChatGPT Apps SDK or remote clients (Bearer auth via MCP_HTTP_TOKEN).Connect the server to Claude Desktop or Claude Code, then paste any of these:
com.us-all.api keeps crashing on this Pixel 6 emulator. Pull the last crash log, the offending stack frames, and any recent permission changes."com.us-all.api over the last 5 minutes. Show heap deltas, GC pressure, and the largest allocators."com.us-all.api — measure activity launch time, identify the slowest fragment init, and suggest where to add tracing."mobile-next/mobile-mcp (4.7K★) is the cross-platform action-oriented MCP. Different problem space:
| mobile-mcp | @us-all/android-mcp (this) | |
|---|---|---|
| Platform | iOS + Android (cross-platform) | Android only (specialist) |
| Posture | Action-oriented ("drive the app via NL") | Diagnostic ("tell me why it broke") |
| UI surface | Accessibility-tree-first, action loops | UI hierarchy + screenshots + diagnostic dumps |
| Diagnostic depth | minimal | logcat / dumpsys / getprop / processes / crashes |
| Aggregations | — | device-health, analyze-app |
| MCP Prompts | — | 5 (diagnostic-themed) |
| Security gates | basic | 2-tier (write + shell separate) |
| Distribution | broad (12+ IDE buttons) | npm + Docker |
Use both — they're complementary. mobile-mcp drives the device through your QA flows; this MCP tells you why it broke when something does. Especially:
dumpsys gfxinfo + activity launch timing.dumpsys package permission state and recent grants.{
"mcpServers": {
"android": {
"command": "npx",
"args": ["-y", "@us-all/android-mcp"],
"env": {
"ANDROID_MCP_ALLOW_WRITE": "true"
}
}
}
}
claude mcp add android -s user \
-e ANDROID_MCP_ALLOW_WRITE=true \
-e ANDROID_MCP_ALLOW_SHELL=true \
-- npx -y @us-all/android-mcp
docker run --rm \
--device /dev/bus/usb \
-e ANDROID_MCP_ALLOW_WRITE=true \
ghcr.io/us-all/android-mcp-server:latest
git clone https://github.com/us-all/android-mcp-server.git
cd android-mcp-server && pnpm install && pnpm build
node dist/index.js
PATH (or set ADB_PATH)ANDROID_SERIAL=<serial> to target a specific one| Variable | Required | Default | Description |
|---|---|---|---|
ANDROID_HOME | ❌ | auto-detect | Android SDK path |
ADB_PATH | ❌ | adb (PATH) | Path to ADB binary |
ANDROID_SERIAL | ❌ | auto (single device) | Target device serial |
ANDROID_MCP_ALLOW_WRITE | ❌ | false | Enable write operations (install, tap, push) |
ANDROID_MCP_ALLOW_SHELL | ❌ | false | Enable arbitrary adb shell execution |
ANDROID_TOOLS | ❌ | — | Comma-sep allowlist of categories. Biggest token saver. |
ANDROID_DISABLE | ❌ | — | Comma-sep denylist. Ignored when ANDROID_TOOLS is set. |
MCP_TRANSPORT | ❌ | stdio | http to enable Streamable HTTP transport |
MCP_HTTP_TOKEN | conditional | — | Bearer token. Required when MCP_TRANSPORT=http |
MCP_HTTP_PORT | ❌ | 3000 | HTTP listen port |
MCP_HTTP_HOST | ❌ | 127.0.0.1 | HTTP bind host (DNS rebinding protection auto-enabled for localhost) |
MCP_HTTP_SKIP_AUTH | ❌ | false | Skip Bearer auth — e.g. behind a reverse proxy that handles it |
Categories (9): device, apps, ui, logcat, emulator, files, system, debug, shell (always-gated by ANDROID_MCP_ALLOW_SHELL), plus always-on meta.
When MCP_TRANSPORT=http: POST /mcp (Bearer-auth JSON-RPC) + GET /health (public liveness).
| Scenario | Tools | Schema tokens | vs default |
|---|---|---|---|
| default (all categories) | 75 | 9,200 | — |
typical (ANDROID_TOOLS=device,ui,apps,logcat) | 37 | 5,000 | −46% |
narrow (ANDROID_TOOLS=device,ui) | 19 | 2,500 | −73% |
Plus search-tools meta-tool (always enabled) for runtime tool discovery.
By default, only read operations are permitted. Write operations (tap, install-app, push-file, etc.) return an error unless ANDROID_MCP_ALLOW_WRITE=true. Shell command execution requires a separate ANDROID_MCP_ALLOW_SHELL=true for additional security — even with write enabled, raw shell stays blocked unless this is explicitly set.
Workflow templates available via MCP prompts/list:
crash-investigation — pull crash logs + stack frames + recent permission changes for a target package.memory-leak-detection — track heap delta over a window; cluster by allocator.ui-element-locator — find a UI element by visual + accessibility hints; return tap coordinates.app-startup-profile — cold-start profile: activity launch + fragment init + first frame.permission-audit — flag dangerous permissions held by under-used 3rd-party apps.URI-based read-only entities:
android://devices — connected devicesandroid://device/{serial} — device details (model/brand/version/display)android://app/{packageName}/activities — activities exposed by a package (exported/launchable flags)android://device/{serial}/processes — running processes9 categories. Use search-tools to discover at runtime; full list collapsed below.
| Category | Tools |
|---|---|
| System (battery / network / settings / display / orientation / port-fwd / wifi / mobile-data) | 19 |
| Apps (install / launch / permissions / intents / data clear) | 14 |
| UI (tap / swipe / screenshot / hierarchy / annotated tap-by-index / screen recording) | 13 |
| Emulator (AVD start/stop, snapshot mgmt) | 7 |
| Device (list / info / properties / wireless connect) | 5 |
| Debug (bugreport / mem / gfx / cpu / doctor) | 5 |
| Logcat (capture / filter / clear / crash extract) | 4 |
| Files (list / pull / push / delete) | 4 |
Shell (gated execute-shell) | 1 |
Aggregations (device-health, analyze-app) | 2 |
Meta (search-tools) | 1 |
list-devices, get-device-info, get-device-properties, connect-device, disconnect-device
list-packages, get-package-info, install-app, uninstall-app, launch-app, stop-app, clear-app-data, grant-permission, revoke-permission, open-url, send-broadcast, get-current-activity, is-app-installed, get-app-intents
take-screenshot, dump-ui-hierarchy, tap, long-press, swipe, input-text, press-key, drag-and-drop, start-screen-recording, pull-screen-recording, double-tap, take-annotated-screenshot, tap-element
get-logcat, clear-logcat, search-logcat, get-crash-logs
list-avds, start-emulator, stop-emulator, list-snapshots, load-snapshot, save-snapshot, delete-snapshot
list-files, pull-file, push-file, delete-file
get-battery-info, get-network-info, change-setting, get-setting, set-display-size, set-display-density, keep-screen-on, port-forward, reverse-forward, list-forwards, remove-forward, toggle-wifi, toggle-mobile-data, open-notification, lock-device, unlock-device, get-orientation, set-orientation, list-settings
bugreport, get-mem-info, get-gfx-info, get-cpu-info, doctor
execute-shell — gated by ANDROID_MCP_ALLOW_SHELL
device-health — battery + memory + cpu + network in one call (~7KB response, 4 sub-systems with caveats).
analyze-app — package info + memory + activities aggregation.
search-tools — query other tools by keyword; always enabled.
Claude → MCP stdio → src/index.ts
├── adb.ts (execFile wrapper)
├── tools/utils.ts (wrapToolHandler, shellEscape, validation)
└── tools/{device,apps,ui,logcat,emulator,files,system,debug,shell,aggregations}.ts
↓
ADB CLI (USB / TCP-IP / Emulator)
↓
Android Device
Built on @us-all/mcp-toolkit:
extractFields — token-efficient response projections (skipped for ADB flat-array endpoints)aggregate(fetchers, caveats) — fan-out helper for device-health / analyze-appcreateWrapToolHandler — WriteBlockedError/ShellBlockedError passthrough + structured ADB errors ({code, stderr})wrapImageToolHandler (Android-only) — base64 PNG sanitizationsearch-tools meta-toolANDROID_MCP_ALLOW_WRITE=true.execute-shell blocked without ANDROID_MCP_ALLOW_SHELL=true even with write enabled — distinct trust levels.shellEscape for single-quote-based escape; input validation via zod regex whitelists for setting keys, package names, permissions, components, broadcast actions/extras... + no shell metachars.Node.js 20+ • TypeScript strict ESM • pnpm • @modelcontextprotocol/sdk 1.27+ • zod v4 • fast-xml-parser • vitest (fork pool isolation).
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.