app-screen-mcp
An MCP server for reliable iOS Simulator automation that enables agents to control devices, read accessibility UI trees, and capture screenshots. It supports deterministic grounded actions like tapping, typing, and swiping to create a closed-loop observe-reason-act cycle.
README
<div align="center"> <img src="./assets/banner.svg" alt="app-screen-mcp banner" width="100%" />
<h1>app-screen-mcp</h1> <p><strong>MCP server for reliable iOS Simulator automation.</strong></p> <p> Control simulators, read accessibility UI trees, capture screenshots, and run grounded agent actions through one <a href="https://modelcontextprotocol.io">Model Context Protocol</a> server. </p>
<p> <img alt="TypeScript" src="https://img.shields.io/badge/TypeScript-5.x-0A7EA4?style=flat-square&logo=typescript&logoColor=white" /> <img alt="MCP" src="https://img.shields.io/badge/MCP-Compatible-0F766E?style=flat-square" /> <img alt="Platform" src="https://img.shields.io/badge/Platform-macOS-1E3A8A?style=flat-square&logo=apple&logoColor=white" /> <img alt="License" src="https://img.shields.io/badge/License-MIT-166534?style=flat-square" /> </p> </div>
Why this exists
Most mobile automation breaks when scripts act without observing current screen state.
app-screen-mcp fixes that by combining:
- Accessibility structure from
idb ui describe-all - Real pixels from Simulator screenshots
- Deterministic interactions (
tap,type_text,swipe, hardware buttons)
This gives agents a closed loop: observe, reason, act, verify.
What you get
- Simulator discovery and boot control
- App launch and termination by bundle ID
- Full normalized accessibility tree
- JPEG screenshots with size/quality controls
- Image-hash suppression to skip unchanged screenshots
- Semantic actions by text or accessibility ID
- Relative-coordinate taps for resolution-independent flows
- One-call screen summary (
UI tree + optional screenshot)
Architecture
MCP Client / Agent
|
v
app-screen-mcp
|
+--> xcrun simctl (devices, app lifecycle, screenshots)
|
+--> idb (UI tree, tap, swipe, type, hardware buttons)
|
v
iOS Simulator
Prerequisites
- macOS with Xcode + iOS Simulator
- Node.js 18+
idbtooling
Manual install for idb:
brew tap facebook/fb
brew install idb-companion
pip3 install fb-idb
Install
Option 1: one-step installer (recommended)
bash <(curl -fsSL https://raw.githubusercontent.com/xmuweili/app-screen-mcp/main/install.sh)
The script checks/installs:
- Xcode Command Line Tools
- Homebrew
- Node.js (18+)
idb-companionfb-idbapp-screen-mcp(global npm package)
Option 2: global npm install
npm install -g app-screen-mcp
Option 3: from source
git clone https://github.com/xmuweili/app-screen-mcp.git
cd app-screen-mcp
npm install
npm run build
Configure your MCP client
Claude Desktop
Config file:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"ios-simulator": {
"command": "node",
"args": ["/absolute/path/to/app-screen-mcp/dist/index.js"]
}
}
}
Cursor / VS Code MCP
Common config paths:
.cursor/mcp.json.vscode/mcp.json
Use the key your client expects: mcpServers or mcp.servers.
{
"mcpServers": {
"ios-simulator": {
"command": "node",
"args": ["/absolute/path/to/app-screen-mcp/dist/index.js"]
}
}
}
Restart your MCP client after updating config.
Tool reference (15 tools)
| Tool | Purpose |
|---|---|
list_simulators |
List simulators and boot state |
boot_simulator |
Boot simulator by UDID |
launch_app |
Launch app by bundle_id |
terminate_app |
Force-quit app by bundle_id |
get_ui_tree |
Return normalized accessibility tree |
take_screenshot |
Capture JPEG screenshot with compression and unchanged-image suppression |
get_screen_summary |
Return tree + optional screenshot with token-saving options |
tap |
Tap absolute (x, y) |
tap_relative |
Tap relative (rx, ry) in [0,1] |
type_text |
Type into focused field |
swipe |
Swipe between points with optional duration |
press_button |
Press HOME, LOCK, SIDE_BUTTON, or SIRI |
find_elements |
Search tree by label/value/hint text |
tap_text |
Find best text match and tap target point |
tap_id |
Tap by accessibility identifier |
Quick usage patterns
1) Observe without image (cheap)
{
"name": "get_screen_summary",
"arguments": {
"include_image": false,
"compact_tree": true
}
}
2) Add image when visual confirmation is required
{
"name": "get_screen_summary",
"arguments": {
"include_image": true,
"max_dim": 720,
"quality": 55
}
}
3) Skip unchanged screenshots
{
"name": "get_screen_summary",
"arguments": {
"include_image": true,
"only_if_changed": true,
"previous_image_hash": "<last_hash>"
}
}
4) Stable interaction flow
1. get_screen_summary(include_image=false)
2. find_elements("Sign In")
3. tap_id("login_email") or tap_text("Email")
4. type_text("user@example.com")
5. tap_text("Sign In")
6. get_screen_summary(include_image=true, only_if_changed=true)
Permission prompts
Permission behavior is enforced by the MCP client, not this server.
Claude Code (CLI)
Allow this server in ~/.claude/settings.json:
{
"permissions": {
"allow": ["mcp__ios-simulator__*"]
}
}
ios-simulator must match your MCP server name.
Codex CLI
Codex uses command-level approvals. Use “always allow” for recurring safe command prefixes when prompted.
Local development
npm install
npm run build
npm start
Main implementation:
src/index.ts
Testing
The integration tests run against a real booted iOS Simulator.
npm test
Before running tests:
- Boot an iOS Simulator device.
- Build/install demo app under
demo-app/if not already installed.
Test helpers:
tests/helpers/client.tstests/helpers/ui.tstests/helpers/vision.ts
Troubleshooting
No iOS simulator is currently running- Boot a simulator first, or call
boot_simulator.
- Boot a simulator first, or call
idbcommand failures- Verify
idb-companionandfb-idbinstallation and PATH.
- Verify
- Missing/weak element matches
- Improve app accessibility labels and identifiers.
- GUI client cannot find node/module path
- Use an absolute path in
argsinstead of relying on shell PATH.
- Use an absolute path in
Contributing
Contributions are welcome.
For tool changes:
- Update tool schema in
src/index.ts - Implement tool handler in
src/index.ts - Add integration coverage in
tests/demo-app.test.ts - Update Tool Reference in this README
License
MIT
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。