@ohah/react-native-mcp-server
npm
v0.1.0-rc.14
Source verified
Published by ohah — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.
MCP server for React Native app automation and monitoring
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 21.7 = 78. What the published surface and source actually contain:
| Points | What was found | Category |
|---|---|---|
| −15.4 | Assembled command execution and dynamic evaluation in the same server MTC-SRC-011 | injection |
| −6.3 | Untrusted input concatenated into a command sink MTC-SRC-009 | injection |
2. Client adoption risk — 78 − 10 = 68. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −10 | capability blast radius (critical) — client exposure if the model is manipulated |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
In the server's implementation (`runtime.js:3369`): Evaluating a runtime value as code (rather than a fixed literal) executes whatever reaches it — a direct RCE primitive, and almost never necessary in legitimate code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try { result = eval(msg.params && msg.params.code != null ? msg.params.code : "undefined"); } catch (e) {
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server runtime.js
The implementation both builds shell commands out of runtime values (`dist/init-CN1KEbKD.js`) and evaluates runtime values as code (`runtime.js`). Each is a separate arbitrary-execution primitive; a server exposing both gives anything that reaches either one a direct path to running attacker-chosen code. These two sinks are in different files — confirm whether they are actually connected, or are unrelated code paths (e.g. a vendored bundle plus a CLI wrapper).
Fix: Remove the dynamic eval, and pass command arguments as an argv array instead of building a shell string. If both are genuinely required, constrain and validate every value that can reach them.
Location: server implementation
In the server's implementation (`runtime.js:1791`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: __r=(function(){ return eval(__script); })(); var __v=typeof __r===\"string\" ? __r : (function(){ try { return JSON.str
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server runtime.js
In the server's implementation (`dist/adb-utils-DKh6ICjL.js:1`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: rt { spawn } from "node:child_process"; //#region src/tools/run-command.ts /** * 공유 CLI 명령 실행 유틸리티 * take-screenshot, i
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/adb-utils-DKh6ICjL.js
In the server's implementation (`dist/client-Boy8p1w3.js:4`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: port { execFile } from "child_process"; import path from "path"; import { existsSync } from "fs"; //#region src/client/
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/client-Boy8p1w3.js
In the server's implementation (`dist/index.js:7`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: spawnSync } from "node:child_process"; import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { St
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/index.js
In the server's implementation (`dist/init-CN1KEbKD.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: { execSync } from "node:child_process"; import os from "node:os"; import fs from "node:fs"; import readline from "node:r
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/init-CN1KEbKD.js
In the server's implementation (`dist/reporters-r33TY821.js:3`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: { execSync } from "node:child_process"; import { z } from "zod"; import { tmpdir } from "node:os"; import { existsSync,
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/reporters-r33TY821.js
In the server's implementation (`dist/init-CN1KEbKD.js:141`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: try { const output = execSync(`${cmd} ${versionFlag}`, { stdio: [ "pipe", "pipe", "pipe" ], time
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/init-CN1KEbKD.js
In a packaging/dev/install script (shipped, but not the server runtime) (`dist/test/cli.js:5`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: { execSync } from "node:child_process"; import { createServer } from "node:http"; import { platform } from "node:os"; im
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server dist/test/cli.js
In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/doctor.mjs:11`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: port { execSync } from 'child_process'; const MIN_NODE_MAJOR = 24; const MIN_RN_VERSION = '0.74.0'; function parseVers
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server scripts/doctor.mjs
Each tool and what it can reach — statically extracted from the published source.
set_network_mockingests untrusted inputaccessibility_auditno sensitive capabilityadd_mediano sensitive capabilityassert_stateno sensitive capabilityclearno sensitive capabilityclear_stateno sensitive capabilitydescribe_uino sensitive capabilityevaluate_scriptno sensitive capabilityfile_pushno sensitive capabilityget_component_sourceno sensitive capabilityget_debugger_statusno sensitive capabilityget_orientationno sensitive capabilityget_render_reportno sensitive capabilityget_screen_sizeno sensitive capabilityget_state_changesno sensitive capabilityinput_keyno sensitive capabilityinput_textno sensitive capabilityinspect_stateno sensitive capabilitylist_appsno sensitive capabilitylist_console_messagesno sensitive capabilitylist_devicesno sensitive capabilitylist_network_mocksno sensitive capabilitylist_network_requestsno sensitive capabilityopen_deeplinkno sensitive capabilitypress_buttonno sensitive capabilityremove_network_mockno sensitive capabilityscroll_until_visibleno sensitive capabilityset_locationno sensitive capabilityset_orientationno sensitive capabilitystart_render_highlightno sensitive capabilitystart_render_profileno sensitive capabilitystart_video_recordingno sensitive capabilitystop_render_highlightno sensitive capabilitystop_video_recordingno sensitive capabilityswipeno sensitive capabilityswitch_keyboardno sensitive capabilitytake_screenshotno sensitive capabilitytake_snapshotno sensitive capabilitytapno sensitive capabilityterminate_appno sensitive capabilitytype_textno sensitive capabilityvisual_compareno sensitive capabilitywebview_evaluate_scriptno sensitive capabilityScan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v0.1.0-rc.14 latest |
D 68/100 | 11 | 1.13.0 | 2026-09-07 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan @ohah/react-native-mcp-server --online
Independent packages implementing the same tool, scanned with the same engine. Compare all 4 side by side →
Add an in-app AI support agent to React Native apps that understands UI, navigates screens, fills forms, and escalates to humans.
MCP server for React Native and Expo development workflow
Security scan results for the React Native (npm) MCP server.
Public-safe MCP admin discovery contract descriptors and response builders.
Pokemon Champions battle advisor MCP server
Airflow MCP server — DAG list, runs, task instances, log tails, trigger and clear over the Airflow REST API
MCP analytics wrapper SDK that instruments MCP tool declarations with telemetry.
AI-ready GIS, geofencing, DataSynch, CRM, inventory, routing, APIs, telemetry and workflows.
AI-native social listening. Monitor buying signals and run GTM workflows via natural language.