Xcode (onmyway133) MCP Server

@onmyway133/xcode-mcp npm v1.0.2

Published by @onmyway133 — 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.

MCP server for interacting with Xcode build and simulator tools

Trust grade
B
87/100
Last scanned get badge →
Trust
B · 87/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
B Why this grade threat 94 − adoption risk = 87/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 − 6.3 = 94. What the published surface and source actually contain:

PointsWhat was foundCategory
−6.3 Description names a credential store the tool cannot reach MTC-INJ-SCHEMA-1 injection

2. Client adoption risk — 94 − 7 = 87. 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
−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 12

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

In the server's implementation (`dist/index.js:2875`): 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 makeValidate = new Function(`${names_1.default.self}`, `${names_1.default.scope}`, sourceCode); const val

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

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

In the server's implementation (`dist/index.js:33755`): 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: t { exec, spawn } from "child_process"; import { promisify } from "util"; var execAsync = promisify(exec); class Comman

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

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

In the server's implementation (`dist/programs/command-executor.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: t { exec, spawn } from 'child_process'; import { promisify } from 'util'; const execAsync = promisify(exec); export clas

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/programs/command-executor.js

high Shell/command execution in server code (dist/programs/simulator-control/app-management.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/app-management.js:68`): 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: } export async function spawn(core, deviceId, command, args = []) { const argsStr = args.map((a) => `"${a}"`).join('

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/programs/simulator-control/app-management.js

high Shell/command execution in server code (dist/programs/simulator-control/app.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/app.js:85`): 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: } export async function spawn(deviceId, command, args = []) { const argsStr = args.map((a) => `"${a}"`).join(' ');

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/programs/simulator-control/app.js

high Shell/command execution in server code (dist/programs/simulator-control/io-operations.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/io-operations.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: as spawnProcess } from 'child_process'; import { existsSync } from 'fs'; export async function screenshot(core, deviceId

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/programs/simulator-control/io-operations.js

high Shell/command execution in server code (dist/programs/simulator-control/io.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/io.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: as spawnProcess } from 'child_process'; import { existsSync } from 'fs'; export async function screenshot(deviceId, outp

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/programs/simulator-control/io.js

high Shell/command execution in server code (dist/programs/simulator-control/pasteboard.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/pasteboard.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: import { spawn } from 'child_process'; import { executeSimctl } from './core.js'; export async function copyToPasteboar

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/programs/simulator-control/pasteboard.js

high Shell/command execution in server code (dist/programs/simulator-control/video.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-control/video.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: import { spawn } from 'child_process'; import { existsSync, unlinkSync } from 'fs'; let activeRecording = null; export

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/programs/simulator-control/video.js

high Shell/command execution in server code (dist/programs/simulator-program.js)MTC-SRC-002

In the server's implementation (`dist/programs/simulator-program.js:158`): 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: const child = require('child_process').spawn('sh', ['-c', args.join(' ')], { detached: true, });

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/programs/simulator-program.js

high Shell/command execution in server code (src/programs/command-executor.ts)MTC-SRC-002

In the server's implementation (`src/programs/command-executor.ts: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: t { exec, spawn } from 'child_process'; import { promisify } from 'util'; import type { CommandResult } from '../types.j

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 src/programs/command-executor.ts

medium Description names a credential store the tool cannot reachMTC-INJ-SCHEMA-1

Tool "notarize_list_signing_identities" describes a credential store (SSH keys, cloud credentials, a keychain or an equivalent) that nothing in its input schema can address. A tool's interface is the honest statement of what it touches; prose that reaches past it is addressed to the model, not to a reader.

Evidence: keychain

Fix: Remove the reference, or expose the target as an explicit, validated parameter so the client can see and consent to what the tool reads.

Location: tool notarize_list_signing_identities · description

Tools 71

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

  • simulator_get_logsreads sensitive data
  • device_analyze_version_bumpno sensitive capability
  • device_get_infono sensitive capability
  • device_get_screen_sizesno sensitive capability
  • device_get_supported_for_versionno sensitive capability
  • device_list_allno sensitive capability
  • ios_market_share_calculate_reachno sensitive capability
  • ios_market_share_compare_versionsno sensitive capability
  • ios_market_share_get_adoption_infono sensitive capability
  • ios_market_share_get_distributionno sensitive capability
Show 61 more tools ↓
  • ios_market_share_get_recommendationno sensitive capability
  • notarize_and_stapleno sensitive capability
  • notarize_check_statusno sensitive capability
  • notarize_create_dmgno sensitive capability
  • notarize_create_zipno sensitive capability
  • notarize_get_historyno sensitive capability
  • notarize_get_logno sensitive capability
  • notarize_list_signing_identitiesno sensitive capability
  • notarize_sign_codeno sensitive capability
  • notarize_stapleno sensitive capability
  • notarize_store_credentialsno sensitive capability
  • notarize_submitno sensitive capability
  • notarize_validate_stapleno sensitive capability
  • notarize_verify_codeno sensitive capability
  • simulator_add_mediano sensitive capability
  • simulator_app_infono sensitive capability
  • simulator_bootno sensitive capability
  • simulator_createno sensitive capability
  • simulator_deleteno sensitive capability
  • simulator_eraseno sensitive capability
  • simulator_get_app_containerno sensitive capability
  • simulator_get_bootedno sensitive capability
  • simulator_install_appno sensitive capability
  • simulator_launch_appno sensitive capability
  • simulator_listno sensitive capability
  • simulator_list_appsno sensitive capability
  • simulator_list_device_typesno sensitive capability
  • simulator_list_runtimesno sensitive capability
  • simulator_open_app_containerno sensitive capability
  • simulator_open_urlno sensitive capability
  • simulator_pasteboard_copyno sensitive capability
  • simulator_pasteboard_pasteno sensitive capability
  • simulator_pasteboard_syncno sensitive capability
  • simulator_privacyno sensitive capability
  • simulator_push_notificationno sensitive capability
  • simulator_record_videono sensitive capability
  • simulator_screenshotno sensitive capability
  • simulator_set_appearanceno sensitive capability
  • simulator_set_content_sizeno sensitive capability
  • simulator_set_increase_contrastno sensitive capability
  • simulator_set_locationno sensitive capability
  • simulator_set_status_barno sensitive capability
  • simulator_shutdownno sensitive capability
  • simulator_stop_recordingno sensitive capability
  • simulator_terminate_appno sensitive capability
  • simulator_uninstall_appno sensitive capability
  • xcode_analyze_projectno sensitive capability
  • xcode_archive_projectno sensitive capability
  • xcode_build_projectno sensitive capability
  • xcode_clean_projectno sensitive capability
  • xcode_export_archiveno sensitive capability
  • xcode_get_build_settingsno sensitive capability
  • xcode_get_developer_pathno sensitive capability
  • xcode_get_info_plistno sensitive capability
  • xcode_get_project_infono sensitive capability
  • xcode_get_versionno sensitive capability
  • xcode_list_installationsno sensitive capability
  • xcode_list_schemesno sensitive capability
  • xcode_list_sdksno sensitive capability
  • xcode_run_testsno sensitive capability
  • xcode_selectno sensitive capability

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
v1.0.2 latest B 87/100 12 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: B · 87/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/onmyway133-xcode-mcp/badge.svg)](https://mcptrustchecker.com/registry/onmyway133-xcode-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/onmyway133-xcode-mcp"><img src="https://mcptrustchecker.com/registry/onmyway133-xcode-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/onmyway133-xcode-mcp/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 @onmyway133/xcode-mcp --online

Use the free API → How scoring works

Other implementations of Xcode 6

Independent packages implementing the same tool, scanned with the same engine. Compare all 7 side by side →

More in Developer Tools