artemis
Enables AI assistants and test suites to automate real Android devices and emulators through natural language instructions, including UI interaction, screenshot capture, Logcat collection, and task execution.
Can drive Google Maps on Android devices to perform tasks such as setting driving routes and calculating total travel durations.
Can automate YouTube on Android devices, for example opening the app and playing music or videos.
Click on "Deploy 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., "@artemistake a screenshot and grab recent logcat from the connected device"
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.
🔱 This is a fork
This repository is a personal fork of google/artemis, maintained by @AdityaBOL7. The upstream project is developed by Google LLC and contributors and is licensed under Apache 2.0. The original project README is preserved at
docs/README_UPSTREAM.md.My contributions to this fork are listed under What's new in this fork. Everything else is upstream work — credit for it belongs to the original authors.
✨ What's new in this fork
artemis wall — live device wall
Opens every connected phone as a real scrcpy stream in one tiled grid, so you can watch agents drive multiple devices at once.
uv run artemis wallViewer, not an executor. Never takes a
DeviceExecutionLock, so the wall can be opened while tasks are running — watching an agent work is the whole point.Busy devices are protected. Any device Artemis is currently driving is labelled
[BUSY]in its window title and opened without control, so a stray click cannot derail a run.Area-optimal tiling. The grid solver scores layouts by the area the phone picture actually occupies rather than by tile aspect, so eight phones don't degrade into a 7×1 row with one orphan below.
DPI- and taskbar-aware on Windows, with a Tk fallback on other platforms, so the bottom row never lands under the taskbar.
Staggered launches. scrcpy pushes a ~733 KB server and claims a port per device; launches are spaced to stop later devices coming up as black tiles.
Per-device logs under
traces/wall/, so a black tile can be explained after the fact.
Also adds a live agent-stream panel to the admin console web UI, backed by a new system route.
Area | Files |
CLI command | |
CLI wiring | |
API route | |
Web UI |
Related MCP server: Android-MCP
Key Highlights
Cross-App Automation: Executes testing workflows and everyday tasks on Android from natural language instructions.
Multimodal Targeting: Uses element indices when available, with coordinate and visual locating fallbacks for custom interfaces.
IDE Diagnostics: Model Context Protocol (MCP) integration lets Antigravity, Claude Code, and Windsurf drive test devices and collect Logcat output and screenshots.
Flash Execution: A reactive observe-and-act loop with asynchronous history summaries, typically 3–5s per step.
Pro Exploration: Checks targets before individual actions and returns blocked actions to the Operator for recovery. Supports long-running exploratory and stability tests.
AndroidWorld Results: 99%+ task completion on Google Research's AndroidWorld benchmark (100+ multi-step tasks).
Antigravity × ARTEMIS: Autonomous Testing Workflow
Antigravity uses ARTEMIS through MCP to turn a test request into a plan, device execution, and a diagnostic report:
Quick Start
Ensure an Android device (with USB Debugging enabled) or emulator is connected. The one-click startup script will automatically:
Install System Toolchains: Detect and auto-install ADB, scrcpy, FFmpeg, and Python (
uv) dependencies.Mount Global MCP Server & AI Agent Rules: Prompt to automatically install global MCP configurations and the Artemis Mobile Testing Mindset (
rules.md) into your AI IDEs (Antigravity, Cursor, Claude Code, Codex, Windsurf, VS Code, Cline/Roo, OpenClaw).
macOS and Linux
# 1. Clone repo & navigate to directory
git clone https://github.com/AdityaBOL7/Artemis.git && cd Artemis
# 2. One-click launch
./start.shWindows PowerShell
# 1. Clone repo & navigate to directory
git clone https://github.com/AdityaBOL7/Artemis.git
cd Artemis
# 2. One-click launch
.\start.batPowerShell does not search the current directory for executable scripts by default, so use
.\start.batwithout a trailing\. In Command Prompt (CMD), usestart.batinstead.
Tip: Opens
http://localhost:8000in your default browser with a device connection wizard, live screen mirroring, prompt sandbox, and execution replays. You can also run directly from CLI:uv run artemis run "Open Settings, find Battery and tell me current level" --profile flash.
ARTEMIS includes a native Model Context Protocol (MCP) server. Connect your real phone directly into AI IDEs:
1. One-Click Auto Install (Recommended)
Running ./start.sh (macOS/Linux) or .\start.bat (Windows PowerShell) will prompt you to configure global MCP and testing rules for detected IDEs (or you can install/update anytime later manually using the commands below):
# Auto-install MCP server & global rules for Antigravity / Jetski:
uv run artemis mcp --install antigravity
# Or install for all supported AI IDEs (including Codex):
uv run artemis mcp --install allTip: You can also configure MCP interactively during first-time setup via
uv run artemis init. Pro Tip: If you want to use theartemiscommand globally withoutuv runin any directory, runuv tool install -e .once in the project root.
2. Manual Configuration (Optional)
If you prefer to configure manually, run uv run artemis mcp --generate-config <client> (for example, codex or antigravity) to output the appropriate TOML or JSON snippet. Replace /path/to/artemis with your actual repo path and point command to your .venv Python executable:
Codex (
~/.codex/config.toml):
[mcp_servers.artemis]
command = "/path/to/artemis/.venv/bin/python"
args = ["-m", "mcp_server"]
cwd = "/path/to/artemis"
[mcp_servers.artemis.env]
PYTHONUNBUFFERED = "1"
PYTHONPATH = "/path/to/artemis"Antigravity (
~/.gemini/jetski/mcp_config.json):
{
"mcpServers": {
"artemis": {
"command": "/path/to/artemis/.venv/bin/python",
"args": ["-m", "mcp_server"],
"cwd": "/path/to/artemis",
"env": {
"PYTHONUNBUFFERED": "1"
},
"tools": {
"mobile_run_task": { "eager": true },
"mobile_manage_task": { "eager": true },
"mobile_get_device_state": { "eager": true },
"mobile_inspect_trace": { "eager": true },
"mobile_diagnose": { "eager": true }
}
}
}
}Claude Desktop (
claude_desktop_config.json):
{
"mcpServers": {
"artemis": {
"command": "/path/to/artemis/.venv/bin/python",
"args": ["-m", "mcp_server"],
"cwd": "/path/to/artemis"
}
}
}3. Mount Behavioral Rules for AI Agents (Highly Recommended)
To ensure your AI coding assistant acts with the rigor of a senior mobile test engineer and never hallucinates UI interactions, we provide a dedicated testing mindset rules file at mcp_server/rules.md (covering Active Exploration before coding, Flash vs. Pro routing strategy, Latency & Timing compensation, and the "Dynamic-First, Coordinate-Fallback" locator pattern).
You can mount or copy mcp_server/rules.md into your AI IDE's rule configuration:
Antigravity: Add the contents of
rules.mdto your Workspace Rules, Global Rules settings, or agent instructions.Claude Code: Run
artemis mcp --install claudeto install the rules to~/.claude/rules/artemis.md(install to exactly one location — Claude Code loads both~/.claude/CLAUDE.mdand~/.claude/rules/*.md, so duplicating the rules wastes context).Cursor: Copy the contents into
.cursorrulesor create a rule file at.cursor/rules/artemis.mdc.Codex: Add the contents to
~/.codex/AGENTS.md(or the activeAGENTS.override.md).Windsurf / OpenClaw: Add the rules to your workspace rules or global system prompts.
For more details on the testing mindset and MCP architecture, see the MCP Server README.
4. Prompt Your Phone in the IDE Chat
In Codex, Antigravity, or Claude Code, simply prompt:
"Build the latest changes into an APK, install it on the connected device, open the login screen with a test account, verify if there are any unexpected popups after login, and return screenshots of the final page."
Install the zero-runtime-dependency client on the development machine. ADB, agents, models, and image processing remain on the device host:
uv add "artemis-client @ git+https://github.com/google/artemis.git#subdirectory=packages/artemis-client"import asyncio
from artemis_client import ArtemisClient
async def main():
client = ArtemisClient(
"http://artemis-host:8000",
device_serial="emulator-5554", # optional: target specific device serial
default_profile="flash", # "flash" (fast reactive) or "pro" (deep reasoning)
)
result = await client.run(
"Open System Settings, go to 'Battery', verify battery percentage is displayed, and check for any crash dialogs.",
)
assert result.succeeded, f"Test failed: {result.error or result.status}"
print(f"✅ Test Passed! Device: {result.device_serial} | Trace ID: {result.trace_id}")
if __name__ == "__main__":
asyncio.run(main())Usage Modes
Web Visual Test Console (
uv run artemis ui): Real-time screen projection and interactive panel, supporting natural language test dispatch, live reasoning telemetry, action trajectories, and execution replay; manage server lifecycle anytime from any terminal usinguv run artemis restart,uv run artemis stop, anduv run artemis status;MCP Server: Connects Antigravity, Claude Code, Windsurf, and other MCP clients to real devices for bug reproduction and test execution;
Developer CLI (
uv run artemis run): Direct terminal execution for automated test cases, exploratory stability inspection, or AndroidWorld benchmarks with high-fidelity structured terminal output;Python SDK: Integrates as a standard Python library into existing automated testing frameworks (e.g., pytest) or CI/CD pipelines with strongly typed Pydantic structured outputs and assertion support.
What ARTEMIS Installs on Your Phone
The first task on a device installs the Artemis Accessibility Helper, a small
accessibility service that reads the screen layout without taking the
UiAutomation connection. Tools using UiAutomation can suppress the helper unless
they enable FLAG_DONT_SUPPRESS_ACCESSIBILITY_SERVICES. You will see
a collapsed "Artemis test helper is running" notification and a new entry under
Settings > Accessibility; both are that helper. It listens only on the phone
itself and sends nothing elsewhere.
Pre-install it (avoids the ~3 s delay on the first task):
uv run artemis helper installInspect it:
uv run artemis helper status/uv run artemis doctorRemove it any time:
uv run artemis helper uninstallUse UIAutomator2 instead:
ARTEMIS_HIERARCHY_BACKEND=uiautomatorin.envPrevent automatic installation:
ARTEMIS_HELPER_AUTO_INSTALL=falsein.env
If the helper ever fails mid-task, ARTEMIS falls back to UIAutomator2 and says
so in the task timeline, in mobile_manage_task status, and in the final report.
Benchmarks: AndroidWorld (SOTA 99%+)
Artemis achieved a 99%+ completion rate on AndroidWorld, Google Research's benchmark spanning 20+ apps and 100+ multi-step tasks.
How ARTEMIS is Architected
Pre-Execution Checks and Action Bursts: Pro checks the target against the live UI tree and pixels before dispatching an individual action. Action bursts handle transient controls without waiting for another model turn.
Element Locating: Combines accessibility hierarchies and OCR with visual models for custom Canvas, Compose, and Flutter interfaces.
Shared History Compression: Flash and Pro replace older screenshots with visual summaries and compress completed steps into searchable history chunks. Context thresholds control when raw turns are replaced.
Execution Profiles: Flash vs. Pro
ARTEMIS supports two execution profiles tailored for different automation requirements:
Flash Profile (
--profile flash): Fast and token-efficient reactive loop (~3–5s per step): one model observes the live screen, thinks, and acts, with no graph orchestration. Ideal for routine, deterministic UI tasks. The loop is unbounded by default (agent.flash.max_turns, 0 = unlimited) because history is compressed rather than capped: Flash shares the Pro session transcript ledger (session-relativeT+mm:ssclock, screenshots folded into visual summaries, older steps chunked into eras and recallable on demand viasearch_history/replay_steps) and can query the session recording throughvideo_analyzer. Transient UI (auto-fading control bars, toasts) is handled by chaining taps into oneclick_sequence. Limitations: No task plan or notes, no pre-execution safety net, no checkpoint verification or final report, and no ADB shell.Pro Profile (
--profile pro): A planning and verification workflow (~15–40s per step), built as a multi-agent graph. A Planner maintains a living Markdown task plan with milestones andverify/assertcheck items; the Operator executes it with the full toolset (Explorer grounding whoseflash/pro/ultratier is a user setting per profile —pro.explorer.mode/flash.explorer_modeinconfig/artemis.jsoncor--explorer-pro-mode— never chosen by the agent; notes, history recall, video analysis, ADB diagnostics). Every single action passes a pre-execution Safety Net (XML-first, pixel fallback), while multi-action fast-action bursts fire back to back to beat turn latency on transient UI. A blocked or failed action opens an execution incident that stays in the Operator's context until a later action succeeds, so recovery is handled by the Operator itself with no separate repair agent. A read-only Checker verifies plan checkpoints and runs an exit final review against the original goal (--verification-level:off/final(default) /checkpoints/strict), and plan milestone edits get an advisory review. Handles 100+ step long-horizon workflows,[Loop:continuous]monitoring, and an optional written report.
Roadmap
Android Studio Integration: Native IDE plugin and workflow integration to enable in-editor debugging, test recording, and automated device control directly within Android Studio.
iOS Platform Expansion: Extending multimodal perception and mobile automation to iOS devices and simulators.
On-Device Lightweight VLMs: Local execution with lightweight edge vision models for low-latency, privacy-first automation.
Real-time Duplex Voice Interaction: Voice-driven task dispatch with real-time conversational control and interruption handling.
Community & Contributing
Contributions are warmly welcomed!
Star the repo to follow updates and releases
Join the Discord Community for technical discussions
For this fork, open an Issue or Pull Request
For the upstream project, use google/artemis issues
License
This project is licensed under the Apache License 2.0.
This project includes source code developed by Minitap, Inc..
This server cannot be deployed
Maintenance
Related MCP Connectors
Drive real devices from your AI Coding tool. Embed a client SDK (Unity, Godot, Flutter, iOS/macOS, Android, React Native, Web) in your app, then capture screenshots, traverse the UI tree, inject taps and key events, and run automated test tasks on the physical device over a secure relay.
Control real Android and iOS devices with LLM agents — tap, swipe, type, automate flows.
- LimrunOAuthcom.limrun
Cloud iOS simulators and Android emulators your agent can create, drive, and throw away.
Drive real Android & iOS devices and web browsers from natural language for mobile + web QA. 290+ tools across device control, app management, automation sessions, browser automation, and flow recording / replay. Bearer-auth — get a token at robotactions.com → Profile → API Tokens.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables comprehensive control of Android devices via ADB for Flutter development, UI testing, and visual QA workflows. Provides 60+ tools for device management, UI inspection, app testing, performance profiling, and debugging through natural language.77MIT
- AlicenseBqualityBmaintenanceEnables AI agents to control Android devices and emulators through direct UI interaction, allowing app navigation, automated testing, and real-world task execution via ADB without computer vision or scripts.182MIT
- AlicenseBqualityBmaintenanceEnables AI assistants to interact with Android devices and emulators via ADB, providing tools for screenshots, UI inspection, touch and text input, app management, and device control.4260 npm18MIT
- AlicenseAqualityBmaintenanceEnables AI agents to build, deploy, drive, and debug Android apps — managing Gradle builds, emulators, adb deployment, logcat capture, and full UI automation.5345 npmMIT