io.github.MobAI-App/mobai-mcp
NPM · MOBAI-MCP · SCANNED AUG 3
AI-powered mobile device automation for Android and iOS devices, emulators, and simulators
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (Apache-2.0).Pass
- Actively maintained (last published 22 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability87
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1393 tokens (~53/item across 26 items; 22 tools + 4 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · mobai-mcp
claude mcp add mobai-app-mobai-mcp -- npx -y mobai-mcp
codex mcp add mobai-app-mobai-mcp -- npx -y mobai-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"mobai-app-mobai-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"mobai-mcp"
],
"enabled": true
}
}
} openclaw mcp add mobai-app-mobai-mcp --command npx --arg -y --arg mobai-mcp
mcp_servers:
mobai-app-mobai-mcp:
command: "npx"
args: ["-y", "mobai-mcp"] {
"mcpServers": {
"mobai-app-mobai-mcp": {
"command": "npx",
"args": [
"-y",
"mobai-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +45
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Security disclosure: fail → unverified ▼ functional
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: 100 → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Dependency health: unverified → partial ▲ functional
- Licence: Apache-2.0 functional
- 31 Jul 26 −27
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 28 Jul 26 0
- Security disclosure: unverified → fail ▼ functional
- 27 Jul 26 53
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
execute_dsl ~219
Execute a batch of automation steps using the DSL (Domain Specific Language). This is the PREFERRED method for complex automation as it's more reliable than sequential API calls. DSL supports: observe, tap, type, toggle, swipe, scroll, open_app, navigate, wait_for, assert_*, if_exists, delay, execute_js (web) Example DSL script: { "version": "0.2", "steps": [ {"action": "observe", "context": "native", "include": ["ui_tree"]}, {"action": "tap", "predicate": {"text_contains": "Settings"}}, {"action": "delay", "duration_ms": 500}, {"action": "observe", "context": "native", "include": ["ui_tree"]} ], "on_fail": {"strategy": "retry", "max_retries": 2} }
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| script | object | yes | DSL script object with version, steps, and optional on_fail |
No output schema declared.
No examples provided.
get_device ~35
Get information about a specific device
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID (serial for Android, UDID for iOS) |
No output schema declared.
No examples provided.
get_ocr ~46
Perform OCR text recognition on the current screen (iOS only). Returns detected text with screen coordinates for tapping (already adjusted for tapping).
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
get_screenshot ~35
Capture a screenshot from the device. Returns the file path to the saved PNG.
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
get_ui_tree ~93
Get the UI accessibility tree showing all visible elements with indices for tapping
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| include_keyboard | boolean | — | Include keyboard elements in the tree (default: false). Useful for interacting with on-screen keyboards. |
| only_visible | boolean | — | Filter to only visible elements (default: true) |
| verbose | boolean | — | Include detailed elements array with bounds (default: false) |
No output schema declared.
No examples provided.
go_home ~24
Navigate to device home screen
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
http_request ~172
Make a raw HTTP request to the MobAI API. Use this for advanced operations not covered by other tools. Base URL: http://127.0.0.1:8686/api/v1 Common endpoints: - GET /devices - List devices - GET /devices/{id}/screenshot - Take screenshot - GET /devices/{id}/ui-tree - Get UI tree - POST /devices/{id}/dsl/execute - Execute DSL script - POST /devices/{id}/agent/run - Run AI agent
| Name | Type | Req | Description |
|---|---|---|---|
| body | string | — | Request body as JSON string |
| method | string | yes | HTTP method |
| timeout_ms | number | — | Timeout in milliseconds (default: 600000) |
| url | string | yes | Full URL or endpoint path (e.g., /devices) |
No output schema declared.
No examples provided.
launch_app ~48
Launch an application by bundle ID
| Name | Type | Req | Description |
|---|---|---|---|
| bundle_id | string | yes | App bundle ID (e.g., com.apple.Preferences, com.android.settings) |
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
list_apps ~25
List installed applications on the device
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
list_devices ~24
List all connected Android and iOS devices, emulators, and simulators
Input schema present but exposes no named parameters.
No output schema declared.
No examples provided.
run_agent ~101
Run an AI agent to perform a task autonomously. The agent will observe the screen, make decisions, and execute actions to complete the task.
| Name | Type | Req | Description |
|---|---|---|---|
| agent_type | string | — | Agent type (default: toolagent) |
| device_id | string | yes | Device ID |
| task | string | yes | Task description (e.g., 'Open Settings and enable WiFi') |
| use_vision | boolean | — | Enable vision/screenshots (default: from app settings) |
No output schema declared.
No examples provided.
start_bridge ~41
Start the on-device bridge (accessibility service on Android, WebDriverAgent on iOS). Required before automation.
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
stop_bridge ~24
Stop the on-device bridge
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
swipe ~82
Perform a swipe gesture
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| duration_ms | number | — | Duration in milliseconds (default: 300) |
| from_x | number | yes | Starting X coordinate |
| from_y | number | yes | Starting Y coordinate |
| to_x | number | yes | Ending X coordinate |
| to_y | number | yes | Ending Y coordinate |
No output schema declared.
No examples provided.
tap ~76
Tap an element by index (from UI tree) or coordinates
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| index | number | — | Element index from UI tree (preferred) |
| x | number | — | X coordinate (use with y instead of index) |
| y | number | — | Y coordinate (use with x instead of index) |
No output schema declared.
No examples provided.
type_text ~41
Type text on the device (tap input field first to focus)
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| text | string | yes | Text to type |
No output schema declared.
No examples provided.
web_click ~49
Click an element in the web page using CSS selector
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| selector | string | yes | CSS selector (e.g., 'button.submit', '#login-btn') |
No output schema declared.
No examples provided.
web_execute_js ~47
Execute JavaScript in the web page context
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| script | string | yes | JavaScript code to execute (use 'return' for results) |
No output schema declared.
No examples provided.
web_get_dom ~29
Get the DOM tree of the current web page
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
web_list_pages ~34
List available web pages (browser tabs and WebViews) for web automation
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
No output schema declared.
No examples provided.
web_navigate ~38
Navigate to a URL in the browser
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| url | string | yes | URL to navigate to |
No output schema declared.
No examples provided.
web_type ~51
Type text into a web element using CSS selector
| Name | Type | Req | Description |
|---|---|---|---|
| device_id | string | yes | Device ID |
| selector | string | yes | CSS selector for the input element |
| text | string | yes | Text to type |
No output schema declared.
No examples provided.