Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

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

+18 this week 71 Trust /100
Trust breakdown (6 categories)

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
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
Install

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

# add to Claude Code
claude mcp add mobai-app-mobai-mcp -- npx -y mobai-mcp
# add to Codex CLI
codex mcp add mobai-app-mobai-mcp -- npx -y mobai-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mobai-app-mobai-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mobai-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add mobai-app-mobai-mcp --command npx --arg -y --arg mobai-mcp
# ~/.hermes/config.yaml
mcp_servers:
  mobai-app-mobai-mcp:
    command: "npx"
    args: ["-y", "mobai-mcp"]
// mcp.json
{
  "mcpServers": {
    "mobai-app-mobai-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mobai-mcp"
      ]
    }
  }
}
Changelog

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.

Diagnostics

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.

MCP tools — 22 exposed · ~1,334 tokens

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.

Tool Tokens
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} }

NameTypeReqDescription
device_idstringyesDevice ID
scriptobjectyesDSL 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

NameTypeReqDescription
device_idstringyesDevice 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).

NameTypeReqDescription
device_idstringyesDevice 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.

NameTypeReqDescription
device_idstringyesDevice 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

NameTypeReqDescription
device_idstringyesDevice ID
include_keyboardbooleanInclude keyboard elements in the tree (default: false). Useful for interacting with on-screen keyboards.
only_visiblebooleanFilter to only visible elements (default: true)
verbosebooleanInclude detailed elements array with bounds (default: false)

No output schema declared.

No examples provided.

go_home ~24

Navigate to device home screen

NameTypeReqDescription
device_idstringyesDevice 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

NameTypeReqDescription
bodystringRequest body as JSON string
methodstringyesHTTP method
timeout_msnumberTimeout in milliseconds (default: 600000)
urlstringyesFull URL or endpoint path (e.g., /devices)

No output schema declared.

No examples provided.

launch_app ~48

Launch an application by bundle ID

NameTypeReqDescription
bundle_idstringyesApp bundle ID (e.g., com.apple.Preferences, com.android.settings)
device_idstringyesDevice ID

No output schema declared.

No examples provided.

list_apps ~25

List installed applications on the device

NameTypeReqDescription
device_idstringyesDevice 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.

NameTypeReqDescription
agent_typestringAgent type (default: toolagent)
device_idstringyesDevice ID
taskstringyesTask description (e.g., 'Open Settings and enable WiFi')
use_visionbooleanEnable 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.

NameTypeReqDescription
device_idstringyesDevice ID

No output schema declared.

No examples provided.

stop_bridge ~24

Stop the on-device bridge

NameTypeReqDescription
device_idstringyesDevice ID

No output schema declared.

No examples provided.

swipe ~82

Perform a swipe gesture

NameTypeReqDescription
device_idstringyesDevice ID
duration_msnumberDuration in milliseconds (default: 300)
from_xnumberyesStarting X coordinate
from_ynumberyesStarting Y coordinate
to_xnumberyesEnding X coordinate
to_ynumberyesEnding Y coordinate

No output schema declared.

No examples provided.

tap ~76

Tap an element by index (from UI tree) or coordinates

NameTypeReqDescription
device_idstringyesDevice ID
indexnumberElement index from UI tree (preferred)
xnumberX coordinate (use with y instead of index)
ynumberY 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)

NameTypeReqDescription
device_idstringyesDevice ID
textstringyesText to type

No output schema declared.

No examples provided.

web_click ~49

Click an element in the web page using CSS selector

NameTypeReqDescription
device_idstringyesDevice ID
selectorstringyesCSS 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

NameTypeReqDescription
device_idstringyesDevice ID
scriptstringyesJavaScript 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

NameTypeReqDescription
device_idstringyesDevice ID

No output schema declared.

No examples provided.

web_list_pages ~34

List available web pages (browser tabs and WebViews) for web automation

NameTypeReqDescription
device_idstringyesDevice ID

No output schema declared.

No examples provided.

web_navigate ~38

Navigate to a URL in the browser

NameTypeReqDescription
device_idstringyesDevice ID
urlstringyesURL to navigate to

No output schema declared.

No examples provided.

web_type ~51

Type text into a web element using CSS selector

NameTypeReqDescription
device_idstringyesDevice ID
selectorstringyesCSS selector for the input element
textstringyesText to type

No output schema declared.

No examples provided.