MCP server for simulator-based mobile QA agents.
Swipium lets an AI agent run practical mobile QA from a local MCP client: launch an app in an Android Emulator or iOS Simulator, inspect screens, act on the UI, run smoke checks, collect evidence, build an app knowledge map, generate reports, and create reusable test assets.
Website: swipium.com
Swipium is a local MCP server for mobile QA workflows. It gives agents a structured tool surface for simulator setup, UI observation, action execution, evidence capture, app-map memory, reporting, and generated test suites.
Swipium's mission is to help development teams and indie developers get fast feedback on applications from a usage perspective, not from a code perspective. Earlier usage feedback helps teams iterate quickly and avoid shipping production builds with issues that could have been detected before release.
Swipium is intended to be used through an agent. The agent communicates with the MCP server and gets access to a QA-oriented suite of testing tools for exploration, evidence collection, app knowledge, report generation, test assets, and automation.
Public v1 scope:
- Android Emulator and iOS Simulator.
- Local MCP stdio server.
- Evidence stored as local Swipium artifacts.
- Durable app knowledge map under the tested project.
- Flow, test-case, suite, and automation generation from observed behavior.
- Consent gates for mutating actions.
- Secret redaction for credentials, tokens, OTPs, and generated sensitive values.
Swipium is not a replacement for a test runner. It is an agent-facing QA harness.
It helps an agent answer requests like:
- "Test it."
- "Test this e2e flow."
- "Create test automation for this app."
- "Smoke test this app."
- "Explore the login flow."
- "Generate a report with evidence."
- "Turn this run into a reusable flow."
- "Create an automation suite from what you observed."
The MCP server keeps the workflow deterministic where possible and explicit where risk exists. Heavy steps such as booting simulators, installing apps, writing files, or generating automation are exposed as tools with structured outputs, blockers, artifacts, and consent prompts.
Run this from the mobile app repository:
npx -y swipium verifyAdd Swipium to your agent:
npm install -g swipium
swipium init claude --apply --scope projectThen ask the agent:
Test this app with Swipium. Start with qa_test_this. Use Android Emulator or iOS Simulator only. Generate a report with evidence.
For a direct MCP configuration without a global install:
Run without installing:
npx -y swipium verifyInstall globally:
npm install -g swipium
swipium verifyInstall in a project:
npm install --save-dev swipium
npx swipium verifyRequirements:
- Node.js 20 or newer.
- Android Studio for Android Emulator workflows.
- Xcode for iOS Simulator workflows.
- A simulator-ready app artifact when testing iOS, such as a simulator
.app. - An APK or buildable Android project when testing Android.
Start with the autopilot tool:
qa_test_this {
"projectRoot": "/absolute/path/to/app",
"mode": "execute",
"goal": "smoke"
}
Common workflow:
qa_doctorchecks local toolchain readiness.qa_test_thisresolves the project, artifact, and simulator target.qa_job_statuspolls long-running work.qa_smokeorqa_exploreruns the app.qa_reportproduces the evidence report.qa_app_map_readorqa_app_map_queryreads the durable app map.qa_flow_generate,qa_suite_generate, orqa_automation_generatecreates reusable QA assets.
CLI helpers:
swipium verify # starts the server and checks tool injection
swipium init claude # preview Claude Code registration
swipium init gemini # preview Gemini registration
swipium init codex # preview Codex config
swipium init flows # create starter flow templates
swipium scan # scan project context
swipium suite # local suite helperSwipium runs as a stdio MCP server. MCP clients launch it as a local process and communicate through JSON-RPC over stdin and stdout.
Manual MCP configuration:
{
"mcpServers": {
"swipium": {
"command": "npx",
"args": ["-y", "swipium"],
"cwd": "/absolute/path/to/your/mobile-app",
"timeout": 600000
}
}
}Installed binary configuration:
{
"mcpServers": {
"swipium": {
"command": "swipium",
"args": [],
"cwd": "/absolute/path/to/your/mobile-app",
"timeout": 600000
}
}
}Important:
- Set
cwdto the mobile app repository. - Restart the MCP client after installing or upgrading.
- Run
qa_doctorif tools are missing or stale. - Use
qa_get_artifactfor report, screenshot, dump, and log artifacts.
More detail: docs/mcp-server.md
Global install:
npm install -g swipium
swipium init claude --apply --scope projectNo global install:
claude mcp add swipium --scope project -- npx -y swipiumGlobal install:
npm install -g swipium
swipium init gemini --applyNo global install:
gemini mcp add swipium npx -y swipiumGlobal install:
npm install -g swipium
swipium init codex --applyManual Codex config:
[mcp_servers.swipium]
command = "npx"
args = ["-y", "swipium"]
cwd = "/absolute/path/to/your/mobile-app"After setup, verify that the client lists qa_test_this, qa_capabilities, and qa_report.
Swipium v1 exposes 42 public MCP tools. Start with qa_test_this for low-context requests.
Full reference: docs/tools.md
| Group | Tools |
|---|---|
| Start | qa_agent_brief, qa_capabilities, qa_test_this, qa_job_status, qa_status, qa_explain_blocker, qa_continue_from_blocker, qa_get_artifact |
| Setup | qa_doctor, qa_start_session, qa_detect_context, qa_plan, qa_prepare_target, qa_prepare_ios_target, qa_ios, qa_wda |
| Drive | qa_snapshot, qa_act, qa_clear_overlay, qa_check_health, qa_screenshot, qa_note, qa_assert_visual |
| Run | qa_smoke, qa_explore, qa_report |
| App map | qa_app_map_build, qa_app_map_read, qa_app_map_query, qa_app_map_feature_scope, qa_app_map_validate |
| Flows and suites | qa_flow_check, qa_flow_run, qa_flow_generate, qa_suite_generate, qa_suite_compile, qa_testcase_generate |
| First run | qa_first_run_plan, qa_first_run_continue |
| Automation | qa_automation_plan, qa_automation_generate, qa_automation_validate |
- Agent-native: exposes QA work as MCP tools with structured outputs.
- Simulator-first: focuses v1 on Android Emulator and iOS Simulator reliability.
- Evidence-first: screenshots, logs, reports, dumps, and artifacts are stored and linked.
- App memory: the app map preserves screens, features, test cases, flows, and coverage context.
- Practical consent: mutating actions are gated instead of hidden behind agent text.
- Reusable output: exploratory runs can become flows, test cases, suites, and generated automation.
- Local by default: the server runs on the developer machine and uses local simulators.
MIT. See LICENSE.

{ "mcpServers": { "swipium": { "command": "npx", "args": ["-y", "swipium"], "cwd": "/absolute/path/to/your/mobile-app", "timeout": 600000 } } }