mobile-simulator-emulator-mcp
A local, stdio-only Model Context Protocol server that lets coding agents inspect, control, and test Apple iOS Simulators and Google Android Emulators. It exposes 29 typed tools for device lifecycle, app management, UI automation, screenshots, logs, permissions, location, and platform-specific test conditions.
README
Mobile Simulator & Emulator MCP
A local, stdio-only Model Context Protocol server that lets coding agents inspect, control, and test Apple iOS Simulators and Google Android Emulators. It exposes 29 typed tools for device lifecycle, app management, UI automation, screenshots, logs, permissions, location, and platform-specific test conditions.
It uses:
xcrun simctlfor iOS Simulator lifecycle, apps, URLs, and screenshots.- Appium WebDriverAgent for iOS UI trees and input.
- Google
adbandemulatorfor Android lifecycle, apps, UI trees, screenshots, and input.
Physical devices are intentionally rejected.
Requirements
- macOS with Xcode and at least one installed iOS Simulator runtime.
- Android SDK Platform Tools and Android Emulator.
- Node.js 24 or newer.
- A booted simulator/emulator for interaction tools.
mobile_boot_devicecan boot an installed target returned bymobile_list_devices.
Verify the native tools:
xcrun simctl list devices
adb devices -l
emulator -list-avds
Quick start
This package is currently installed from source:
git clone https://github.com/gitsoufiane/mobile-simulator-emulator-mcp.git
cd mobile-simulator-emulator-mcp
npm ci --ignore-scripts
npm run build
Start the devices you want the agent to use:
# iOS: boot a Simulator from Xcode or the command line
open -a Simulator
# Android: list and start an installed AVD
emulator -list-avds
emulator -avd <AVD_NAME>
Then verify both native toolchains:
xcrun simctl list devices
adb devices -l
npm run live
The first iOS UI interaction builds and launches WebDriverAgent through Xcode. It can take several minutes. Later calls reuse that process until the MCP server exits or another iOS Simulator is selected.
Configure an MCP client
Any MCP client that supports local stdio servers can run this server. Build first, then add the following server definition to the client's MCP configuration, replacing the absolute path:
{
"mcpServers": {
"mobile": {
"command": "node",
"args": [
"/absolute/path/to/mobile-simulator-emulator-mcp/dist/src/index.js"
]
}
}
}
Restart the MCP client after changing its configuration. The first calls should be:
mobile_doctorwith{}.mobile_list_deviceswith{}.- Use the returned
ios:...,android:..., orandroid-avd:...ID in later calls.
By default, .app and .apk installation paths are resolved beneath the MCP process working directory. Clients that launch the server from the active agent project—such as Pi's MCP adapter when no cwd is configured—therefore need no extra environment setting.
If another MCP client starts the server from a fixed directory, set that client's cwd to the mobile project. MOBILE_MCP_APP_ROOT remains available as an optional explicit override.
The server writes MCP protocol messages only to stdout. Diagnostics and WebDriverAgent logs go to stderr.
Recommended agent workflow
- Call
mobile_doctor. - Call
mobile_list_devicesand keep the returned stable ID. - Boot a shutdown target if needed.
- Install and launch the app.
- Set permissions or simulated location needed by the scenario.
- Call
mobile_get_ui_treebefore using coordinates; usemobile_take_screenshotwhen visual context is needed. - Interact with
mobile_tap,mobile_swipe,mobile_type_text, andmobile_press_key. - Re-read the UI tree or screenshot after each state-changing action.
- Collect
mobile_get_logswhen a workflow fails. Usemobile_reset_apponly when a clean app state is required.
Example requests
Once connected, an agent can handle requests such as:
- “List my available simulators and emulators, then boot the shutdown iPhone.”
- “Install the Android debug APK, launch it, and take a screenshot.”
- “Open
myapp://checkout/123, inspect the UI tree, and tap Continue.” - “Set the emulator location to San Francisco and test the nearby-results screen.”
- “Collect the last five minutes of logs for
com.example.app.” - “Reset the test app, grant location permission, and rerun the onboarding flow.”
Destructive tools run without an extra MCP-side confirmation. Configure this server only for trusted agents and disposable simulator/emulator data.
Tools
| Tool | Purpose |
|---|---|
mobile_doctor |
Check native tools, device counts, and WDA status |
mobile_list_devices |
List iOS Simulators, running Android Emulators, and configured AVDs |
mobile_boot_device |
Boot and wait for an iOS Simulator or Android AVD |
mobile_shutdown_device |
Shut down a running target without deleting data |
mobile_install_app |
Install .app or .apk artifacts from the active project root |
mobile_launch_app |
Launch an app by bundle/package ID |
mobile_terminate_app |
Stop an app without clearing data |
mobile_get_logs |
Return bounded logs for one installed app |
mobile_reset_app |
Clear Android app data or uninstall an iOS app |
mobile_set_permission |
Grant/revoke Android runtime permissions or grant/revoke/reset allowlisted iOS privacy services |
mobile_set_location |
Set simulated GPS coordinates; iOS also supports clearing the simulation |
mobile_send_push |
Send a ≤4096-byte APNs payload to an iOS Simulator app |
mobile_uninstall_app |
Uninstall an app and its data |
mobile_erase_device |
Shut down and erase an iOS Simulator |
mobile_set_clipboard |
Replace iOS Simulator pasteboard text |
mobile_get_clipboard |
Read iOS Simulator pasteboard text |
mobile_set_status_bar |
Override or clear typed iOS status-bar values |
mobile_set_battery |
Set Android Emulator battery capacity and charging state |
mobile_send_sms |
Deliver a simulated inbound Android SMS |
mobile_fingerprint |
Touch/remove an enrolled Android Emulator fingerprint |
mobile_set_network |
Set Android Emulator speed and latency profiles |
mobile_rotate |
Rotate an Android Emulator clockwise |
mobile_open_url |
Open an allowed URL or deep link |
mobile_take_screenshot |
Return a PNG image directly to the client |
mobile_get_ui_tree |
Return iOS JSON or Android XML UI hierarchy |
mobile_tap |
Tap validated coordinates |
mobile_swipe |
Swipe between validated coordinates |
mobile_type_text |
Type into the focused field |
mobile_press_key |
Press HOME/BACK/ENTER/app-switch/volume keys as supported |
Device IDs
- Booted iOS:
ios:<simulator-UDID> - Running Android:
android:emulator-5554 - Shutdown Android AVD:
android-avd:<AVD-name>
Always use IDs from the latest mobile_list_devices result.
Configuration
| Variable | Default | Meaning |
|---|---|---|
MOBILE_MCP_APP_ROOT |
MCP process working directory | Only .app/.apk paths beneath this directory may be installed |
MOBILE_MCP_URL_SCHEMES |
empty | Comma-separated extra deep-link schemes; http and https are always allowed |
MOBILE_MCP_SHOW_XCODE_LOG |
0 |
Set to 1 for verbose Xcode/WDA diagnostics on stderr |
ANDROID_SDK_ROOT / ANDROID_HOME |
executable lookup | Android SDK location |
Security model
- Local stdio transport only; there is no MCP HTTP listener or remote authentication surface.
- No arbitrary shell,
adb shell, orsimctl spawntool is exposed. - Native commands use argument arrays, explicit Android serials, timeouts, and output limits.
- Physical devices, device creation/deletion, raw native-command passthrough, and arbitrary host shell access are not supported.
- Curated destructive operations—including app reset/uninstall and iOS Simulator erase—execute without per-call confirmation. The MCP client configuration is the trust boundary.
- URL schemes, device identifiers, app IDs, permissions, coordinates, environment profiles, durations, push payloads, and install paths are validated.
- WebDriverAgent is contacted only at
127.0.0.1:8100.
Treat this server like any local developer tool: it runs with the MCP client's operating-system permissions and can interact with apps displayed in test devices.
Limits
- One iOS Simulator can own the WDA process on port 8100 at a time. Android can run concurrently.
- Android
input textsupports printable ASCII only. iOS typing supports Unicode through WDA. - UI trees depend on apps exposing useful accessibility labels/identifiers.
- Trees and logs over one million characters return
truncated: true; treat the result as incomplete. - Android Emulator has no official command to clear its last GPS fix; the release gate restores it to
0,0. - Android AVD wipe is a boot-time option, so
mobile_erase_deviceis iOS-only. - Clipboard and cosmetic status-bar control are iOS-only in the installed official CLIs. SMS, fingerprint, network profiles, battery state, and rotation are Android-only.
- Simulated push delivery is iOS-only. Android FCM requires Firebase rather than
adb. - Apple exposes no supported
simctlcommand for network conditioning or Face ID/Touch ID events; those remain out of scope. - Video recording remains out of scope because it requires a long-running stream lifecycle and artifact storage policy.
- Simulators and emulators do not reproduce all real-device sensors, performance, or hardware behavior.
Troubleshooting
mobile_doctor reports a missing Android command
Set ANDROID_SDK_ROOT or ANDROID_HOME to the Android SDK directory and ensure its platform-tools and emulator directories are installed. You can also add both directories to PATH.
iOS UI calls time out on first use
WebDriverAgent may need several minutes to compile through Xcode. Set MOBILE_MCP_SHOW_XCODE_LOG=1 in the MCP environment to send detailed build logs to stderr.
App installation is rejected
The artifact must resolve beneath the agent project's working directory, or beneath MOBILE_MCP_APP_ROOT when explicitly configured. Android requires an .apk file; iOS requires a built .app directory for the Simulator architecture.
A deep link scheme is rejected
http and https are enabled by default. Add custom schemes as a comma-separated environment value, for example MOBILE_MCP_URL_SCHEMES=myapp,example-beta.
A device ID is rejected
Call mobile_list_devices again and use its exact current ID. Physical Android and Apple devices are intentionally unsupported.
Development and release checks
npm run check
npm run live
npm run live:deep
npm audit --omit=dev
npm run live performs fast screenshots, UI-tree reads, and HOME input on both platforms. npm run live:deep uses the MCP stdio protocol to manipulate Android and iOS Settings, exercise a spare iOS boot/shutdown when available, set simulated locations, collect app logs, round-trip the iOS clipboard, override/clear the iOS status bar, change/restore Android battery and network profiles, rotate Android four times, remove a fingerprint touch, type and swipe, open https://example.com, verify screenshots and UI changes, exercise rejected inputs, and restore managed state.
Destructive app/device tools, permission changes, push, SMS, and install/uninstall need a disposable application/device fixture. The release gate does not run them against system apps.
Official references
The implementation and tool limits were checked against:
- MCP tool specification for strict inputs, structured results, annotations, errors, and the client-side trust model for sensitive operations.
- Apple Xcode command-line tool reference and the installed
xcrun simctl helpfor Simulator lifecycle, logs, privacy, location, push, and screenshots. - Android Debug Bridge, Logcat, and Emulator console for app state, permissions, logs, location, and emulator lifecycle.
See PLAN.md for the approved scope and release gates.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.