Execbro MCP Server

execbro npm v2.11.0 Source verified

Published by igorzheludkov — publish provenance cryptographically ties this package to that repository. That is proof of origin, not an official vendor package.

ExecBro — MCP server giving AI agents eyes and hands into React Native apps. Logs, REPL, state inspection, tap, screenshot.

Trust grade
A
92/100
Last scanned get badge →
Trust
A · 92/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 98 − adoption risk = 92/100

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 − 2.1 = 98. What the published surface and source actually contain:

PointsWhat was foundCategory
−2.1 Hardcoded JSON Web Token in test/example/packaging ×3 MTC-SRC-008 exfiltration

2. Client adoption risk — 98 − 6 = 92. 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:

PointsAdoption-risk factor
−6 capability blast radius (high) — 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.

Findings 20

high Shell/command execution in server code (build/core/exec.js)MTC-SRC-002

In the server's implementation (`build/core/exec.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: , execFile } from "node:child_process"; export function execFileAsync(file, args, opts = {}) { const { signal, ...ex

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 build/core/exec.js

high Shell/command execution in server code (build/core/fingerprint.js)MTC-SRC-002

In the server's implementation (`build/core/fingerprint.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: { execFileSync } from "child_process"; import { readFileSync, existsSync, writeFileSync, mkdirSync } from "fs"; import

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 build/core/fingerprint.js

high Shell/command execution in server code (build/core/ocr.js)MTC-SRC-002

In the server's implementation (`build/core/ocr.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: import { spawn } from "child_process"; import { getInstallationId } from "./telemetry.js"; const OCR_ENDPOINT = "https:

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 build/core/ocr.js

low Hardcoded egress to an external endpoint in packaging/dev tooling (build/__tests__/unit/networkInterceptorXhr.test.js)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/networkInterceptorXhr.test.js:307`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: lFetch; sandbox.fetch("https://api.example.com/dual"); expect(events().filter((e) => e.type === "request

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 build/__tests__/unit/networkInterceptorXhr.test.js

low Hardcoded JSON Web Token in test/example/packaging (build/__tests__/unit/httpRequest.test.js)MTC-SRC-008

A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/httpRequest.test.js:6`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server build/__tests__/unit/httpRequest.test.js

low Hardcoded JSON Web Token in test/example/packaging (build/__tests__/unit/vault.test.js)MTC-SRC-008

A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/vault.test.js:2`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server build/__tests__/unit/vault.test.js

low Hardcoded JSON Web Token in test/example/packaging (build/__tests__/unit/vaultSlots.test.js)MTC-SRC-008

A hardcoded JSON Web Token (an embedded JSON Web Token (often an example or expired token)) appears in `build/__tests__/unit/vaultSlots.test.js:3`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: JSON Web Token: eyJh…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server build/__tests__/unit/vaultSlots.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/helpers/mock-harness.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/helpers/mock-harness.js:61`): 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: teContext(sandbox); vm.runInContext(getInterceptorScript(), sandbox); vm.runInContext(buildMockPushScript(JSON.s

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 build/__tests__/helpers/mock-harness.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/appContext.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/appContext.test.js:6`): 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: ) { const run = new Function("globalThis", source + "; return (" + expr + ");"); return run(globalStub);

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 build/__tests__/unit/appContext.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/appRequest.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/appRequest.test.js:40`): 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: ); expect(() => new Function("return " + src.replace(/^\(function/, "(function"))).not.toThrow(); }); it

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 build/__tests__/unit/appRequest.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/inputTarget.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/inputTarget.test.js:158`): 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: }; return eval(expr); }; it("still reports the wrapper as the field's name", () => { const

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 build/__tests__/unit/inputTarget.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/measureComponentResolution.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/measureComponentResolution.test.js:53`): 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: dex); return (await new Function(`return (${expr});`)()); } afterEach(() => { const g = globalThis; delete g

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 build/__tests__/unit/measureComponentResolution.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/moduleRegistry.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/moduleRegistry.test.js:27`): 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: }; const run = new Function("globalThis", source + "; return __eb_require;"); const req = run(globalThi

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 build/__tests__/unit/moduleRegistry.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/navigation.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/navigation.test.js:6`): 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: ) { const run = new Function("globalThis", source + "; return __eb_nav;"); return run(globalStub); }

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 build/__tests__/unit/navigation.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/networkInterceptorXhr.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/networkInterceptorXhr.test.js:59`): 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: teContext(sandbox); vm.runInContext(getInterceptorScript(), sandbox); return { sandbox: sandbox,

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 build/__tests__/unit/networkInterceptorXhr.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/pressablesLongPress.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/pressablesLongPress.test.js:44`): 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: d) { const fn = new Function("globalThis", `return (${expression.trim()});`); last = fn(globalThisStub);

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 build/__tests__/unit/pressablesLongPress.test.js

low Dynamic code execution in packaging/dev tooling (build/__tests__/unit/pressablesSwitch.test.js)MTC-SRC-001

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/pressablesSwitch.test.js:44`): 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: d) { const fn = new Function("globalThis", `return (${expression.trim()});`); last = fn(globalThisStub);

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 build/__tests__/unit/pressablesSwitch.test.js

low Shell/command execution in packaging/dev tooling (build/__tests__/unit/componentFormatNaming.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/componentFormatNaming.test.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: { execSync } from "node:child_process"; describe("component formatter naming", () => { it("no production source, doc

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 build/__tests__/unit/componentFormatNaming.test.js

low Shell/command execution in packaging/dev tooling (build/__tests__/unit/fingerprint.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/fingerprint.test.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: ss = await import("node:child_process"); const realFs = await import("node:fs"); const realOs = await import("node:os");

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 build/__tests__/unit/fingerprint.test.js

low Shell/command execution in packaging/dev tooling (build/__tests__/unit/keyboardMetrics.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`build/__tests__/unit/keyboardMetrics.test.js:9`): 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: eyboardState(undefined, exec({ visible: true, metrics: { height: 345, screenY: 567, width: 420 } })); expect(s).

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 build/__tests__/unit/keyboardMetrics.test.js

Tools 2

Each tool and what it can reach — statically extracted from the published source.

  • devno sensitive capability
  • ios_buttonno sensitive capability

What this scan could not see

Versions 10

Scan 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.

VersionScoreFindingsEngineScanned
v2.11.0 latest A 92/100 20 1.13.0 2026-09-08
v2.10.3 A 92/100 20 1.13.0 2026-09-07
v2.10.2 A 92/100 20 1.13.0 2026-09-06
v2.9.8 A 94/100 17 1.13.0 2026-09-05
v2.9.4 A 94/100 17 1.13.0 2026-09-01
Show 5 more versions ↓
v2.9.3 A 94/100 17 1.13.0 2026-08-25
v2.9.2 A 94/100 17 1.12.1 2026-08-23
v2.9.1 A 94/100 17 1.12.1 2026-08-22
v2.9.0 A 94/100 17 1.12.1 2026-08-17
v2.8.9 A 94/100 17 1.12.1 2026-08-16

Embed this score

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.

MCP Trust Score: A · 92/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/execbro/badge.svg)](https://mcptrustchecker.com/registry/execbro)
HTML
<a href="https://mcptrustchecker.com/registry/execbro"><img src="https://mcptrustchecker.com/registry/execbro/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/execbro/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

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 execbro --online

Use the free API → How scoring works

More in Developer Tools