Beyond the containerized emulator environment, MobileWorld supports running frontier models on real physical Android phones. This lets you evaluate models like Gemini, Claude, Qwen, and others as true end-to-end mobile agents.
- A physical Android phone connected via USB
- ADB (Android Debug Bridge) installed on your local machine
- An API key for the model you want to test
Download the official ADB platform-tools and extract it.
macOS/Linux:
# Assuming extracted to ~/Downloads/platform-tools
export PATH=${PATH}:~/Downloads/platform-toolsWindows: Refer to this guide for configuration steps.
- Enable Developer Mode: Go to Settings > About Phone > Build Number and tap rapidly ~10 times until you see "Developer mode has been enabled."
- Enable USB Debugging: Go to Settings > Developer Options > USB Debugging and enable it. Some devices may require a restart.
- Verify the connection:
adb devices
# Expected output:
# List of devices attached
# <your_device_id> deviceADB Keyboard is needed for text input. Download the ADBKeyboard.apk and install it on your device:
adb install ADBKeyboard.apk
adb shell ime enable com.android.adbkeyboard/.AdbIMENote: This step is optional — MobileWorld will install it automatically if not present.
git clone https://github.com/Tongyi-MAI/MobileWorld.git
cd MobileWorld
uv syncuv run mobile-world serverThis starts the backend API server that bridges the model and the device.
uv run mw test "set an alarm at 8:00 am" \
--agent-type general_e2e \
--model_name anthropic/claude-sonnet-4-5 \
--llm_base_url https://openrouter.ai/api/v1 \
--aw-host http://127.0.0.1:6800 \
--api_key YOUR_API_KEYReplace --model_name, --llm_base_url, and --api_key with the model and credentials you want to use. Any OpenAI-compatible endpoint works. The --agent-type general_e2e prompt works across most frontier models. For Seed-2.0-Pro, use --agent-type seed_agent for better performance.
| Model | Agent Type | Coordinate System | Notes |
|---|---|---|---|
| Claude Opus 4.7 | general_e2e |
Absolute pixels | 1 image in history (see leaderboard notes) |
| Kimi K2.6 | general_e2e |
Relative (0–1) | |
| Gemini 3 Pro | general_e2e |
Relative (0–1000) | Normalized coordinates |
| Claude Sonnet 4.5 | general_e2e |
Absolute pixels | Requires image resize to 1280×720 |
| Qwen-3.5 | general_e2e |
Relative (0–1000) | |
| KIMI K2.5 | general_e2e |
Relative (0–1) | |
| Seed-2.0-Pro | seed_agent |
Relative (0–1000) | Best with specialized seed_agent agent type |
Tip: You can view the live device screen at any time with
uv run mw device.