phone-eye
Provides tools for AI agents to view and operate a real Android phone via ADB, including taking screenshots, answering visual questions about the screen, tapping, swiping, and typing text.
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., "@phone-eyeWhat's on screen, and tap the login button?"
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.
Phone-Eye š±šļø
Let your AI agent see ā and operate ā a real Android phone.
Your coding agent can read code, run commands, and browse docs. Can it see the app it's building, on a real phone, with real pixels? Phone-Eye gives it eyes and a finger.
phone_look("what's on screen, and where is the login button?")
ā "Login button at (540, 1830) ā a green 'Sign in' ā¦"
phone_tap(540, 1830)
phone_look("did the next page load?")Five verbs, no framework: your agent composes them into whatever workflow it needs. Works with any MCP client ā Claude Code, Codex, Cursor, dsh, and friends.
Why
If you build or test anything that ends up on a phone, you know this loop: the layout is broken on the real device, you screenshot by hand, describe screens in words ("the gear, top right, next to the account thing"), and play coordinate-decoder between your agent and your phone. Phone-Eye closes that loop ā the agent iterates with the device the way it already iterates with your codebase.
Two channels, fused:
Vision ā a vision model answers natural-language questions about the live screenshot (works on game canvases, images, anything pixels can show).
UI tree ā
uiautomatordump for exact text and bounds when the accessibility tree has them.
Vision is pluggable. Any MCP server exposing describe_image(path, question) works ā cloud GLM vision out of the box, or point it at a local
Qwen-VL endpoint so no pixel ever leaves your LAN.
Related MCP server: scrcpy-mcp
Install
Requirements: Python 3.10+, adb (platform-tools / android-tools) on PATH,
a phone with USB debugging on, and any MCP vision server.
git clone https://github.com/boheastill/phone-eye
cd phone-eye
pip install -r requirements.txt
# env (defaults shown):
export ANDROID_SERIAL="" # empty = first adb device; or 192.168.x.x:5555
export PHONE_EYE_VISION_URL="http://127.0.0.1:8102/mcp" # your vision MCPWire it into your client (stdio):
// Claude Code / dsh-mcp-client / any stdio MCP config
{
"mcpServers": {
"phone-eye": { "command": "python", "args": ["/path/to/phone-eye/server.py"] }
}
}Or run it as an HTTP service (streamable-http) behind your own fleet and add
http://<host>:8122/mcp ā see docs/fleet.md.
Connect the phone (one-time)
USB once, then Wi-Fi forever:
adb devices # USB: accept the debugging prompt on the phone
adb tcpip 5555 # switch to Wi-Fi mode
adb connect <phone-ip>:5555 # unplug and goTools
Tool | What it does |
| Ask a vision model about the live screen; fuses UI-tree text + bounds |
| Tap |
| Swipe |
| Type ASCII (spaces ok; CJK needs clipboard route ā known adb quirk) |
| Save screenshot to disk, return path |
What it is / isn't
ā agent eyes + hands on one real Android device, zero on-device install, no root ā vision-first (works where UI trees can't see) with tree-fusion for precision ā privacy option: point vision at a LAN-only model
ā not a test framework (no DSL/recorder ā the agent is the logic) ā not iOS, not device farms (yet) ā not a mobile UI for humans (that's a different product)
Status & roadmap
Phase 1 (now): the five verbs, single device, pluggable vision ā verified end-to-end on real hardware (Redmi K40 Gaming / Android 13). Its favorite party trick so far: it discovered a USB-debugging authorization dialog on its own screen, read the buttons, and tapped "Allow" itself.
Phase 2: offline vision quick-start, multi-device addressing, retry/verify wrappers
Everything else: request-driven ā open an issue and it moves up the queue.
License
MIT
FAQ
Vision server? I don't have one. Any MCP server exposing
describe_image(path, question) works. The quickest cloud option is a GLM
vision endpoint; for fully-offline, a local Qwen-VL (llama.cpp / Ollama
OpenAI-compatible + a 20-line adapter) keeps every pixel on your LAN.
Why not a dsh-native plugin? MCP-first means the same five verbs work in
every client. dsh users can wire it via @deepseek-ai/dsh-mcp-client or
dsh plugin add.
Verified on
Device | Android | Connection | Notes |
Redmi K40 Gaming (ares) | 13 (HyperOS) | Wi-Fi adb ( | daily driver of the author's fleet |
Add yours via a PR to this table.
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
- AlicenseNot gradedqualityCmaintenanceEnables full Android control from any AI agent via 7 MCP tools, including screen capture, touch interaction, app management, and system control.MIT
- AlicenseAqualityAmaintenanceMCP server that gives AI agents full vision and control over Android devices via ADB and scrcpy. Supports screenshots, input, apps, UI automation, shell, files, and clipboard.3825986MIT
- AlicenseBqualityBmaintenanceAn 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.1391Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to control Android phones via MCP and HTTP. Supports screen capture, taps, swipes, text input, and app management.AGPL 3.0
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Give AI agents real phone numbers, messages, and voice calls via MCP.
Live browser debugging for AI assistants ā DOM, console, network via MCP.
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/boheastill/phone-eye'
If you have feedback or need assistance with the MCP directory API, please join our Discord server