@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
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
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
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
Each tool and what it can reach — statically extracted from the published source.
simulator_get_logsreads sensitive datadevice_analyze_version_bumpno sensitive capabilitydevice_get_infono sensitive capabilitydevice_get_screen_sizesno sensitive capabilitydevice_get_supported_for_versionno sensitive capabilitydevice_list_allno sensitive capabilityios_market_share_calculate_reachno sensitive capabilityios_market_share_compare_versionsno sensitive capabilityios_market_share_get_adoption_infono sensitive capabilityios_market_share_get_distributionno sensitive capabilityios_market_share_get_recommendationno sensitive capabilitynotarize_and_stapleno sensitive capabilitynotarize_check_statusno sensitive capabilitynotarize_create_dmgno sensitive capabilitynotarize_create_zipno sensitive capabilitynotarize_get_historyno sensitive capabilitynotarize_get_logno sensitive capabilitynotarize_list_signing_identitiesno sensitive capabilitynotarize_sign_codeno sensitive capabilitynotarize_stapleno sensitive capabilitynotarize_store_credentialsno sensitive capabilitynotarize_submitno sensitive capabilitynotarize_validate_stapleno sensitive capabilitynotarize_verify_codeno sensitive capabilitysimulator_add_mediano sensitive capabilitysimulator_app_infono sensitive capabilitysimulator_bootno sensitive capabilitysimulator_createno sensitive capabilitysimulator_deleteno sensitive capabilitysimulator_eraseno sensitive capabilitysimulator_get_app_containerno sensitive capabilitysimulator_get_bootedno sensitive capabilitysimulator_install_appno sensitive capabilitysimulator_launch_appno sensitive capabilitysimulator_listno sensitive capabilitysimulator_list_appsno sensitive capabilitysimulator_list_device_typesno sensitive capabilitysimulator_list_runtimesno sensitive capabilitysimulator_open_app_containerno sensitive capabilitysimulator_open_urlno sensitive capabilitysimulator_pasteboard_copyno sensitive capabilitysimulator_pasteboard_pasteno sensitive capabilitysimulator_pasteboard_syncno sensitive capabilitysimulator_privacyno sensitive capabilitysimulator_push_notificationno sensitive capabilitysimulator_record_videono sensitive capabilitysimulator_screenshotno sensitive capabilitysimulator_set_appearanceno sensitive capabilitysimulator_set_content_sizeno sensitive capabilitysimulator_set_increase_contrastno sensitive capabilitysimulator_set_locationno sensitive capabilitysimulator_set_status_barno sensitive capabilitysimulator_shutdownno sensitive capabilitysimulator_stop_recordingno sensitive capabilitysimulator_terminate_appno sensitive capabilitysimulator_uninstall_appno sensitive capabilityxcode_analyze_projectno sensitive capabilityxcode_archive_projectno sensitive capabilityxcode_build_projectno sensitive capabilityxcode_clean_projectno sensitive capabilityxcode_export_archiveno sensitive capabilityxcode_get_build_settingsno sensitive capabilityxcode_get_developer_pathno sensitive capabilityxcode_get_info_plistno sensitive capabilityxcode_get_project_infono sensitive capabilityxcode_get_versionno sensitive capabilityxcode_list_installationsno sensitive capabilityxcode_list_schemesno sensitive capabilityxcode_list_sdksno sensitive capabilityxcode_run_testsno sensitive capabilityxcode_selectno 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 |
|---|---|---|---|---|
v1.0.2 latest |
B 87/100 | 12 | 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 @onmyway133/xcode-mcp --online
Independent packages implementing the same tool, scanned with the same engine. Compare all 7 side by side →
RENAMED to drews-xcode-mcp - this compatibility package forwards to it
An MCP server for Xcode integration, enabling AI assistants to interact with Xcode projects
MCP Server for executing shell commands from MCP clients, particularly useful for Xcode-related operations
MCP server for Xcode integration, installable via npx
MCP server for Xcode - build, test, run, and manage Apple platform projects (iOS, macOS, tvOS, watchOS, visionOS)
Security scan results for the Xcode (npm) MCP server.
Hotel booking MCP server — 300K+ properties, real confirmation numbers, loyalty programs. Builders monetize every booking via Stripe Connect. The first MCP server that completes real hotel reservations inside AI conversations.
Manage AdGuard Home through AI assistants
Read-only Azure DevOps for MCP clients using only your existing browser session — no PAT, no Azure CLI. Browse work items, pull requests, comments, attachments and Artifacts feeds across every project, repo and feed you can access.
MCP server for Adobe Experience Manager Assets integration development
Servidor MCP para el tiempo oficial de España (API pública OpenData de AEMET). Predicción, observación y avisos como herramientas MCP tipadas.
A standalone MCP stdio bridge for Affinity by Canva's local MCP SSE server.