Screenhand MCP Server

screenhand npm v0.5.3

Published by manushi4 — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Give AI eyes and hands on your desktop. ScreenHand is an open-source MCP server that lets Claude and other AI agents see your screen, click buttons, type text, and control any app on macOS and Windows.

Trust grade
D
63/100
Last scanned get badge →
Trust
D · 63/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
Critical
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
D Why this grade threat 74 − adoption risk = 63/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 − 26.1 = 74. What the published surface and source actually contain:

PointsWhat was foundCategory
−15.4 Assembled command execution and dynamic evaluation in the same server MTC-SRC-011 injection
−9.5 Untrusted input concatenated into a command sink ×2 MTC-SRC-009 injection
−1.2 Package runs install-time scripts MTC-SUP-010 supply-chain

2. Client adoption risk — 74 − 11 = 63. 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
−10 capability blast radius (critical) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

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 18

high Dynamic evaluation of a non-literal value (dist/mcp-desktop.js)MTC-SRC-010

In the server's implementation (`dist/mcp-desktop.js:3595`): 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: // dynamic AppleScript eval (can construct blocked commands) /do\s+script/i, // Terminal.app shell execution

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/mcp-desktop.js

high Assembled command execution and dynamic evaluation in the same serverMTC-SRC-011

The implementation both builds shell commands out of runtime values (`dist/mcp-desktop.js`) and evaluates runtime values as code (`dist/mcp-desktop.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.

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 dist/mcp-desktop.js

high Dynamic code execution in server code (dist/mcp-desktop.js)MTC-SRC-001

In the server's implementation (`dist/mcp-desktop.js:3595`): 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: // dynamic AppleScript eval (can construct blocked commands) /do\s+script/i, // Terminal.app shell execution

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/mcp-desktop.js

high Shell/command execution in server code (dist/mcp-desktop.js)MTC-SRC-002

In the server's implementation (`dist/mcp-desktop.js:37`): 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: Sync, exec } from "node:child_process"; import { promisify } from "node:util"; const execAsync = promisify(exec); 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 dist/mcp-desktop.js

high Shell/command execution in server code (dist/src/jobs/runner.js)MTC-SRC-002

In the server's implementation (`dist/src/jobs/runner.js:587`): 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: } = await import("node:child_process"); execSync(`open ${JSON.stringify(url)}`, { timeout: 10_000 });

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/src/jobs/runner.js

high Shell/command execution in server code (dist/src/native/bridge-client.js)MTC-SRC-002

In the server's implementation (`dist/src/native/bridge-client.js:17`): 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"; import { EventEmitter } from "node:events"; import fs from "node:fs"; import pat

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/src/native/bridge-client.js

high Shell/command execution in server code (dist/src/runtime/applescript-adapter.js)MTC-SRC-002

In the server's implementation (`dist/src/runtime/applescript-adapter.js:17`): 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"; import { randomUUID } from "node:crypto"; import { promisify } from "node:util";

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/src/runtime/applescript-adapter.js

high Shell/command execution in server code (dist/src/test-mcp-protocol.js)MTC-SRC-002

In the server's implementation (`dist/src/test-mcp-protocol.js:17`): 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"; import { createInterface } from "node:readline"; import path from "node:path"; 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/src/test-mcp-protocol.js

high Shell/command execution in server code (dist/src/util/sanitize.js)MTC-SRC-002

In the server's implementation (`dist/src/util/sanitize.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: { execSync } from "node:child_process"; import os from "node:os"; const MAX_STRING_LENGTH = 1000; const ALLOWED_URL_PROT

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/src/util/sanitize.js

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([platform_learn]) co-exist with external-action tools ([applescript]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [platform_learn] → sinks [applescript]

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow platform_learn → applescript

medium Hardcoded egress to an external endpoint (dist/src/memory/research.js)MTC-SRC-003

In the server's implementation (`dist/src/memory/research.js:60`): 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: const response = await fetch("https://api.anthropic.com/v1/messages", { method: "POST", headers

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/src/memory/research.js

medium Hardcoded egress to an external endpoint (dist/src/planner/planner.js)MTC-SRC-003

In the server's implementation (`dist/src/planner/planner.js:967`): 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: const response = await fetch("https://api.anthropic.com/v1/messages", { method: "POST",

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/src/planner/planner.js

medium Hardcoded egress to an external endpoint (dist/src/state/visual-mapper.js)MTC-SRC-003

In the server's implementation (`dist/src/state/visual-mapper.js:124`): 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: const resp = await fetch("https://api.anthropic.com/v1/messages", { method: "POST", headers

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/src/state/visual-mapper.js

medium Untrusted input concatenated into a command sink (dist/mcp-desktop.js)MTC-SRC-009

In the server's implementation (`dist/mcp-desktop.js:3612`): 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: const result = execSync(`osascript -e '${script.replace(/'/g, "'\\''")}'`, { encoding: "utf-8",

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/mcp-desktop.js

medium Untrusted input concatenated into a command sink (dist/src/jobs/runner.js)MTC-SRC-009

In the server's implementation (`dist/src/jobs/runner.js:588`): 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: _process"); execSync(`open ${JSON.stringify(url)}`, { timeout: 10_000 }); return { ok: true, met

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/src/jobs/runner.js

low Shell/command execution in packaging/dev tooling (dist/scripts/supervisor-daemon.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/scripts/supervisor-daemon.js:127`): 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: } = await import("node:child_process"); const msg = recovery.instruction.replace(/"/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 dist/scripts/supervisor-daemon.js

low Shell/command execution in packaging/dev tooling (scripts/postinstall.cjs)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`scripts/postinstall.cjs:12`): 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 } = require("child_process"); const fs = require("fs"); const path = require("path"); const platform = proce

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/postinstall.cjs

low Package runs install-time scripts (postinstall)MTC-SUP-010

"screenhand" executes postinstall script(s) at install time. An install hook runs at install time; most are routine build/setup, but review what it does before trusting it.

Evidence: node scripts/postinstall.cjs

Fix: Review the scripts; install with --ignore-scripts where possible and vet what they do.

Location: package screenhand

Tools 84

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

  • applescriptnetwork egress
  • platform_learningests untrusted input
  • app_focusno sensitive capability
  • app_launchno sensitive capability
  • app_listno sensitive capability
  • appsno sensitive capability
  • browser_clickno sensitive capability
  • browser_domno sensitive capability
  • browser_fill_formno sensitive capability
  • browser_human_clickno sensitive capability
Show 74 more tools ↓
  • browser_jsno sensitive capability
  • browser_navigateno sensitive capability
  • browser_openno sensitive capability
  • browser_page_infono sensitive capability
  • browser_stealthno sensitive capability
  • browser_tabsno sensitive capability
  • browser_typeno sensitive capability
  • browser_waitno sensitive capability
  • clickno sensitive capability
  • click_textno sensitive capability
  • click_with_fallbackno sensitive capability
  • coverage_reportno sensitive capability
  • discover_featuresno sensitive capability
  • dragno sensitive capability
  • element_treeno sensitive capability
  • execution_planno sensitive capability
  • export_playbookno sensitive capability
  • extractno sensitive capability
  • focusno sensitive capability
  • ingest_documentationno sensitive capability
  • ingest_tutorialno sensitive capability
  • keyno sensitive capability
  • key_combono sensitive capability
  • launchno sensitive capability
  • locate_with_fallbackno sensitive capability
  • map_appno sensitive capability
  • menu_clickno sensitive capability
  • navigateno sensitive capability
  • observer_ocr_roino sensitive capability
  • observer_startno sensitive capability
  • observer_statusno sensitive capability
  • observer_stopno sensitive capability
  • ocrno sensitive capability
  • orchestrator_startno sensitive capability
  • orchestrator_statusno sensitive capability
  • orchestrator_stopno sensitive capability
  • orchestrator_submitno sensitive capability
  • platform_exploreno sensitive capability
  • platform_guideno sensitive capability
  • playbook_listno sensitive capability
  • playbook_preflightno sensitive capability
  • playbook_recordno sensitive capability
  • playbook_runno sensitive capability
  • pressno sensitive capability
  • read_with_fallbackno sensitive capability
  • recording_cancelno sensitive capability
  • recording_startno sensitive capability
  • recording_statusno sensitive capability
  • recording_stopno sensitive capability
  • scan_menu_barno sensitive capability
  • screenshotno sensitive capability
  • screenshot_fileno sensitive capability
  • scrollno sensitive capability
  • scroll_with_fallbackno sensitive capability
  • select_with_fallbackno sensitive capability
  • session_startno sensitive capability
  • task_runno sensitive capability
  • type_intono sensitive capability
  • type_textno sensitive capability
  • type_with_fallbackno sensitive capability
  • ui_findno sensitive capability
  • ui_pressno sensitive capability
  • ui_set_valueno sensitive capability
  • ui_treeno sensitive capability
  • wait_forno sensitive capability
  • wait_for_stateno sensitive capability
  • watch_dialogno sensitive capability
  • watch_registerno sensitive capability
  • watch_startno sensitive capability
  • watch_statusno sensitive capability
  • watch_stopno sensitive capability
  • watch_unregisterno sensitive capability
  • window_listno sensitive capability
  • windowsno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

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
v0.5.3 latest D 63/100 18 1.13.0 2026-09-07

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: D · 63/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/screenhand/badge.svg)](https://mcptrustchecker.com/registry/screenhand)
HTML
<a href="https://mcptrustchecker.com/registry/screenhand"><img src="https://mcptrustchecker.com/registry/screenhand/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/screenhand/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 screenhand --online

Use the free API → How scoring works

More in Browser Automation