The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Ios Agent listing page.
Drive an iPhone or an iOS Simulator with an AI agent. A terminal app, an MCP server, and the library beneath both.

One goal, start to finish, at 2.5x. The agent deep-links into Maps for the driving time, then taps through to walking and transit and scrolls to read the detail: 4 actions, 1 observation, 2,767 device tokens, 49.8s of real time. The terminal is the agent's own transcript; the phone is an iOS Simulator being driven by it.
Built on Apple's XCUIAutomation through WebDriverAgent. It runs on a Mac and drives a simulator or a tethered phone. It is designed for agents rather than test suites: screens arrive as a compact digest instead of raw accessibility XML, actions hand back the screen they produced, and anything irreversible asks first.
quickstart checks the toolchain, offers the repairs that are cheap enough to
be worth offering, builds WebDriverAgent if it is missing (about 20 seconds,
once), and drops you into manual mode, which drives the device by hand and
needs no API key. When you want the agent itself:
Raw WebDriverAgent page source for a 200-row list runs to roughly 37,000 tokens. Re-reading that after every tap exhausts a context window in a handful of steps. Four decisions follow from that, and they are the whole design:
| Perception is budget-aware | 251 raw nodes to 12 elements on a real third-party screen; 50–445 tokens per step |
| Actions return the screen they produced | halves round-trips, and returns a delta when the screen is similar |
| Resolution runs on the host | six tiers, so a retry costs zero model tokens where a round-trip costs a whole turn |
| The gate asks before acting, not after | so the answer still means something |
Everything else in the repository is downstream of those.
| For | You need |
|---|---|
| Simulator | macOS, Xcode 16.3+, an iOS runtime, Python 3.12+ |
| Physical iPhone | the above plus go-ios, Developer Mode, and a signing identity. Follow docs/real-device-setup.md, which is a longer road than the simulator and has a few steps that look like bugs but are not |
Xcode ships without a simulator runtime. If xcrun simctl list runtimes is
empty, xcodebuild -downloadPlatform iOS fetches one (around 8 GB). If a
runtime is installed but no simulator has been created, ios-agent offers to
create one for you: that part takes about a second.
doctor is the first thing to run whenever anything misbehaves. It checks the
toolchain, the simulator runtimes, the tunnel, WebDriverAgent's signing expiry
and the model, and returns a remedy for each failure rather than letting it
surface later as a connection error.
The app runs those same checks before it touches a device, so a machine that is not set up is told so in about a second rather than after a simulator has booted.

It streams the model's reasoning as it arrives, shows the digest the model is reading beside it, and keeps the numbers on screen while they climb: actions, observations, device tokens, cost.
/ | command menu, filtered as you type |
/device · ctrl+o | switch phone or simulator mid-session |
esc | stop at the next step, with a complete report; again to abort |
ctrl+r · ctrl+s | re-read the screen · save the audit trail |
/copy · ctrl+y | copy the transcript, or a selection, to the clipboard |
--inline | run in a short region under the prompt |
--no-tui | plain lines, for a pipe |
manual mode needs no API key. It drives the same nine verbs by hand,
which is the fastest way to debug perception on an app nobody has pointed this
at before.
The front end is held to one rule, asserted rather than argued: watching a
run may not change what it costs. tests/tui/test_cost.py runs the same task
wrapped and unwrapped and compares every counter by equality.
The provider is configuration, not a dependency. The loop builds through
LangChain's init_chat_model, so switching is two environment variables and an
extra:
Anthropic, OpenAI, Gemini, Bedrock, Groq, Mistral and a local Ollama model are all supported. See agent/README.md.
30 tools and 4 resources, over stdio or HTTP. Add to .mcp.json (already
present here for Claude Code):
Then ask for what you want in plain language. The server ships an ios_operator
prompt that teaches the observe/act/verify loop, so clients do not have to
reinvent it. For a remote client, ios-mcp serve --transport http --port 8765.
Or skip the protocol and import the library:
Measured across eleven golden flows on a real simulator: 50 to 422 tokens per tool call.
The agent passes e2 back to an action. It never writes XPath and never
guesses coordinates. If a ref goes stale because the screen moved, the host
re-finds the same element by identity rather than failing.
Automating someone's real phone is not test automation. On by default:
action_requires_approval error an external human-in-the-loop layer can
answer. Approval is scoped to one action: approving Send never approves
Delete.ios_type_secret reads a value from the host keychain and sends it straight
to the device. It never enters a prompt, a tool result, or the audit trail.See SAFETY.md. Every default is settable through an IOS_MCP_*
environment variable, a .env, or an optional ios-mcp.toml, in that order of
precedence. Copy .env.example to .env for the full list.
The eval harness was built before the agent, which is the only reason any
of these numbers exist. Latest measurement, 13 tasks × 3 runs on
gpt-5.6-sol:
| success | 39/39 |
| observations | 39, against an oracle floor of 39 |
| refusals, unusable runs | 0, 0 |
| cost | $2.13 over 10m28s |
Every task sits at the observation floor, including two in an app Apple did not write, because every action already folds the screen it produced into its response.
Tier 1 runs against a scripted in-process device, so its numbers are a claim
about a fake. The same goal, turn on Bold Text, across all three tiers:
| actions | observations | digest | |
|---|---|---|---|
| scripted fake | 3 | 1 | — |
| iOS 26.5 simulator | 3 | 1 | 167 raw nodes → 14 elements, 261 tokens |
| iPhone, iOS 26.6, Wi-Fi | 3 | 1 | 140 raw nodes → 15 elements, 243 tokens |
Identical on all three, and on the phone it took 48.6s where the simulator took
seconds. The switch was confirmed by navigating there and reading value="1"
independently of what the agent claimed, then restored.
Most importantly, a real no-op still reports screen_changed=False on the
phone. If a physical device had moved its fingerprint between settled
snapshots, the verification step would have been silently dead on hardware
while every simulator and fake test stayed green.
Hardware is opt-in twice over, by the device marker and
IOS_MCP_ALLOW_DEVICE=1, because hardware being present is not consent to
change settings on it.
The eval suite is the quality gate: it reports tokens, wall time, action count
and resolution-tier distribution per flow. A drift from exact toward
text-fuzzy is the leading indicator that a flow is about to become flaky.
Agent tasks additionally declare an action floor, the number of actions a
hand-written oracle needs, asserted against that oracle so it cannot drift into
an aspiration. Failures are attributed too: a report says which of them were
the device, perception, the model or the policy gate, rather than only that
something failed.
Those numbers are kept over time in tests/evals/history.jsonl, one committed
line per measured run. CI runs the one series that costs nothing (the oracle
against a scripted device) and fails if any of it moves without the new line
being committed alongside. Hand-run slices go in the same file:
The guard is exact rather than banded, because every number it checks is a count on a fixed route with no model, no network and no clock in it. See docs/adr/0009.
A passing test suite says nothing about what a terminal app looks like. That script has caught eight display bugs no assertion did.
Three distributions in one uv workspace, and the dependencies only point one way. See ARCHITECTURE.md:
An iOS app cannot automate other apps on the device it runs on. The sandbox
blocks cross-process access, and the Accessibility API is unavailable to
sandboxed apps even with user consent. XCUIAutomation only executes inside an
XCTest runner started by testmanagerd, which is driven from a host. Any iOS
app in this project's future is a client of this server, never the engine.
Issues and pull requests are welcome. CONTRIBUTING.md covers the setup, the loop, and the five conventions that are load bearing rather than stylistic. CI runs ruff, mypy and the 618 offline tests on Linux and macOS.
MIT. See LICENSE.
mcp-name: io.github.emazaheri/ios-agent