mobile-simulator-emulator-mcp

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.

Category
Visit Server

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 simctl for iOS Simulator lifecycle, apps, URLs, and screenshots.
  • Appium WebDriverAgent for iOS UI trees and input.
  • Google adb and emulator for 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_device can boot an installed target returned by mobile_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:

  1. mobile_doctor with {}.
  2. mobile_list_devices with {}.
  3. Use the returned ios:..., android:..., or android-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

  1. Call mobile_doctor.
  2. Call mobile_list_devices and keep the returned stable ID.
  3. Boot a shutdown target if needed.
  4. Install and launch the app.
  5. Set permissions or simulated location needed by the scenario.
  6. Call mobile_get_ui_tree before using coordinates; use mobile_take_screenshot when visual context is needed.
  7. Interact with mobile_tap, mobile_swipe, mobile_type_text, and mobile_press_key.
  8. Re-read the UI tree or screenshot after each state-changing action.
  9. Collect mobile_get_logs when a workflow fails. Use mobile_reset_app only 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, or simctl spawn tool 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 text supports 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_device is 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 simctl command 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:

See PLAN.md for the approved scope and release gates.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured