icemoon-mcp
OfficialAutomates real iPhones running iOS by providing structured screen reading, human-like touch input (tap, swipe, pinch, typing), app and navigation controls, batched action sequences, and device state management.
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., "@icemoon-mcpOpen Settings on my iPhone, turn on Do Not Disturb, and verify it stuck."
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.
Icemoon MCP Server — control real iPhones from Claude
Give your AI hands. Icemoon exposes physical iPhones to Claude (and any MCP-compatible client) through a local Model Context Protocol server. The AI reads the device screen, plans multi-step tasks, and executes them with human-like touch — on stock iOS, no jailbreak.
This repository is the official documentation and integration reference for the MCP server that ships inside the Icemoon app. The server itself is bundled with the app (commercial, closed source); everything you need to connect it to your MCP client is documented here.
Website: icemoon.app · MCP overview: icemoon.app/mcp · Install guide: icemoon.app/install
What it does
┌────────────┐ MCP (stdio) ┌──────────────────┐ USB ┌────────────┐
│ Claude │ ◄─────────────────► │ Icemoon MCP │ ◄──────────► │ iPhone(s) │
│ (or any │ │ server + app │ │ stock iOS │
│ MCP client)│ │ on your Mac │ │ │
└────────────┘ └──────────────────┘ └────────────┘Sees the screen as structure, not pixels — real UI elements (buttons, labels, text fields) with identifiers and coordinates.
Touches like a hand, not a script — every swipe follows a unique Bezier curve, taps carry natural timing jitter, typing goes through the real iOS keyboard.
Plans in the open — for multi-step tasks the AI creates a plan you watch progress live on the Icemoon dashboard.
Drives a fleet — connections are pooled; the AI switches between connected iPhones instantly or targets a specific device per call.
Runs locally — the MCP server and the devices live on your Mac. Nothing goes to Icemoon's servers.
Related MCP server: Mobile Device MCP
Requirements
macOS 13+ on Apple Silicon (M1 or newer)
Icemoon installed and activated — the MCP server is included in the Farm and Scale plans
One or more iPhones connected over USB (stock iOS, no jailbreak — setup guide)
Quick start (Claude Desktop)
Install Icemoon and connect an iPhone — step-by-step guide.
In the Icemoon app, open AI Copilot → Install to Claude Desktop. The app registers the server (named
automation-studio) in~/Library/Application Support/Claude/claude_desktop_config.jsonautomatically, with its bundled Python runtime — nothing to install by hand.Restart Claude Desktop. The device tools are now available in every chat.
Ask something like:
Open Settings on my iPhone, turn on Do Not Disturb, and verify it stuck.
Via npm (any MCP client)
icemoon-mcp is a tiny launcher: it finds the installed Icemoon app and hands stdio to the server bundled inside it. No Python to install, no paths to look up.
{
"mcpServers": {
"icemoon": {
"command": "npx",
"args": ["-y", "icemoon-mcp"]
}
}
}The launcher itself is MIT-licensed and has zero dependencies — read it, it is about a hundred lines. It does nothing on its own: the Icemoon app must be installed and licensed, otherwise it prints where to get it and exits.
If an AI agent is doing the setup for you, point it at llms-install.md — the prerequisites to check, the config to write, and what each failure message means.
Variable | Default | Purpose |
|
| Path to the app bundle, if installed elsewhere |
|
| Where the running Icemoon app listens |
Manual configuration (Claude Code, Cursor, other MCP clients)
If you would rather not go through npm, any MCP client can run the bundled server directly — point it at the bundle's runtime and script:
{
"mcpServers": {
"automation-studio": {
"command": "/Applications/AutomationStudio.app/Contents/Resources/mcp_python/bin/python3",
"args": ["/Applications/AutomationStudio.app/Contents/Resources/mcp_server.py"],
"env": {
"DASHBOARD_URL": "http://127.0.0.1:8088",
"PYTHONPATH": "/Applications/AutomationStudio.app/Contents/Resources/mcp_libs"
}
}
}
}Notes:
DASHBOARD_URLis the local Icemoon dashboard (default port8088); the app must be running.Exact paths can differ per build — the easiest way to get the correct entry is to run the one-click install once and copy the generated block from
claude_desktop_config.json.
Tools
53 tools across eight groups — full reference with parameters in docs/tools.md. The same list is published as a machine-readable server card.
Group | Tools | What the AI gets |
Devices & session |
| Discover running devices, pooled connections, per-call |
Screen understanding |
| Structured UI reading — elements, screen fingerprints, app navigation maps |
Touch & input |
| Human-like gesture synthesis; typing through the real iOS keyboard |
Apps & navigation |
|
|
Batching & plans |
| Whole action sequences in one round-trip; live plan progress on the dashboard |
Device state |
| Lock/unlock, clipboard, screen recording, simulated GPS, action recording |
Scheduling & scripts |
| Fire saved automations later, on a calendar, across the fleet |
Utilities |
| Fetch external data mid-task (SSRF-safe URL validation); generate TOTP codes for sign-in flows |
Example prompts
Go through the onboarding of the app I just installed and screenshot every screen.
Run the saved “morning report” automation on all connected iPhones and tell me if any device fails.
Navigate to the checkout screen in our app on every device and record a video of the flow.
Every day at 9:00, open the app, refresh the feed, and save a screenshot — schedule it.
Security & privacy
The server binds locally and talks only to the Icemoon dashboard on
127.0.0.1; devices are attached over USB.Every tool call is written to a local audit log (sensitive parameters masked).
http_requestvalidates URLs and blocks private-network targets.Screen content reaches only the MCP client you connect (e.g. Claude), only while it's working for you.
FAQ
Is this open source? The docs, examples, and manifest in this repo are MIT. The server ships inside the commercial Icemoon app.
Does it work without the Icemoon app? No — the MCP server is the AI-facing surface of the app's automation engine.
Android? No, iOS only. That focus is where the human-like input and no-jailbreak setup come from.
Which plans include it? Farm and Scale — see pricing.
Related
icemoon-dev/icemoon — the main project: documentation, issue tracker, release notes
icemoon.app — the product
Icemoon — automate real iPhones with human-like touch, from your Mac, no jailbreak.
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
- AlicenseBqualityDmaintenanceAn 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.Last updated15241MIT
- Alicense-qualityAmaintenanceAn MCP server that lets AI agents control iOS and Android devices (tap, scroll, type, take screenshots, read UI trees, and run code). Works with multiple devices at the same time.Last updated54238MIT
- AlicenseAqualityCmaintenanceAn MCP server that lets an AI agent drive the iOS Simulator in a loop, enabling tapping, typing, swiping, reading the screen via the accessibility tree, and verifying app state.Last updated14MIT
- Alicense-qualityBmaintenanceMCP server for AI agents to control a Mac via screen and mouse/keyboard, supporting Anthropic Claude and OpenAI for task automation.Last updated53Apache 2.0
Related MCP Connectors
Give AI agents real phone numbers, messages, and voice calls via MCP.
Push notifications for AI agents - send instant iPhone notifications from any MCP client.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
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/icemoon-dev/icemoon-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server