Codemagic (todah-zg) MCP Server

codemagic-mcp-server npm v1.0.5

Published by todah-zg — 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 Codemagic CI/CD and App Store Connect / Google Play — build, sign, and publish mobile apps through AI agents

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/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 100 − adoption risk = 93/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 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. 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 11

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

In the server's implementation (`dist/asc.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: { execFile } from "node:child_process"; import { promisify } from "node:util"; import { createWriteStream } from "node:f

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/asc.js

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

In the server's implementation (`dist/googleplay.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"; import { promisify } from "node:util"; import { createWriteStream } from "node:f

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/googleplay.js

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

In the server's implementation (`dist/index.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: { execFile } from "node:child_process"; import { readFileSync } from "node:fs"; import { promisify } from "node:util"; 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/index.js

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

In the server's implementation (`dist/ssh.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"; import { promisify } from "node:util"; import { mkdtemp, readFile, rm } from "no

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/ssh.js

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

Untrusted-input tools ([upload_to_testflight, upload_build_to_asc, upload_ios_screenshots, list_builds, get_build, create_public_artifact_url, get_build_logs, upload_to_google_play, get_android_store_listing, upload_android_screenshots, get_test_results]) co-exist with external-action tools ([delete_webhook]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [upload_to_testflight, upload_build_to_asc, upload_ios_screenshots, list_builds, get_build, create_public_artifact_url, get_build_logs, upload_to_goog

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

Location: flow upload_to_testflight → delete_webhook

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

In the server's implementation (`dist/yaml.js:10`): 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: validatorPromise = fetch("https://codemagic.io/codemagic-schema.json", { signal: AbortSignal.timeout(10

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/yaml.js

medium Unconstrained URL/host parameter "ipa_url" on "upload_to_testflight"MTC-CAP-007

Tool "upload_to_testflight" takes a URL/host parameter "ipa_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool upload_to_testflight · inputSchema.properties.ipa_url

medium Unconstrained URL/host parameter "ipa_url" on "upload_build_to_asc"MTC-CAP-007

Tool "upload_build_to_asc" takes a URL/host parameter "ipa_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool upload_build_to_asc · inputSchema.properties.ipa_url

medium Unconstrained URL/host parameter "artifact_url" on "create_public_artifact_url"MTC-CAP-007

Tool "create_public_artifact_url" takes a URL/host parameter "artifact_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool create_public_artifact_url · inputSchema.properties.artifact_url

medium Unconstrained URL/host parameter "aab_url" on "upload_to_google_play"MTC-CAP-007

Tool "upload_to_google_play" takes a URL/host parameter "aab_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool upload_to_google_play · inputSchema.properties.aab_url

medium Unconstrained URL/host parameter "artifact_url" on "get_test_results"MTC-CAP-007

Tool "get_test_results" takes a URL/host parameter "artifact_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool get_test_results · inputSchema.properties.artifact_url

Tools 63

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

  • create_public_artifact_urlingests untrusted input
  • delete_webhooknetwork egress
  • get_android_store_listingingests untrusted input
  • get_buildingests untrusted input
  • get_build_logsingests untrusted input
  • get_test_resultsingests untrusted input
  • list_buildsingests untrusted input
  • upload_android_screenshotsingests untrusted input
  • upload_build_to_ascingests untrusted input
  • upload_ios_screenshotsingests untrusted input
Show 53 more tools ↓
  • upload_to_google_playingests untrusted input
  • upload_to_testflightingests untrusted input
  • add_applicationno sensitive capability
  • add_testflight_testerno sensitive capability
  • add_variableno sensitive capability
  • cancel_buildno sensitive capability
  • check_publish_readinessno sensitive capability
  • create_testflight_groupno sensitive capability
  • create_variable_groupno sensitive capability
  • delete_cacheno sensitive capability
  • delete_variableno sensitive capability
  • detect_project_typeno sensitive capability
  • get_asc_release_statusno sensitive capability
  • get_asc_review_statusno sensitive capability
  • get_ios_store_listingno sensitive capability
  • get_latest_build_numberno sensitive capability
  • get_webhook_urlno sensitive capability
  • get_yaml_templateno sensitive capability
  • list_applicationsno sensitive capability
  • list_asc_appsno sensitive capability
  • list_asc_buildsno sensitive capability
  • list_cachesno sensitive capability
  • list_google_play_bundlesno sensitive capability
  • list_google_play_reviewsno sensitive capability
  • list_google_play_tracksno sensitive capability
  • list_ios_screenshot_typesno sensitive capability
  • list_teamsno sensitive capability
  • list_testflight_groupsno sensitive capability
  • list_variable_groupsno sensitive capability
  • list_variablesno sensitive capability
  • list_webhooksno sensitive capability
  • list_workflowsno sensitive capability
  • list_yaml_template_typesno sensitive capability
  • pingno sensitive capability
  • prepare_release_notesno sensitive capability
  • promote_google_play_releaseno sensitive capability
  • release_versionno sensitive capability
  • reply_to_google_play_reviewno sensitive capability
  • set_android_data_safetyno sensitive capability
  • set_android_store_listingno sensitive capability
  • set_export_complianceno sensitive capability
  • set_ios_store_listingno sensitive capability
  • set_phased_releaseno sensitive capability
  • set_rollout_fractionno sensitive capability
  • set_version_metadatano sensitive capability
  • share_app_internallyno sensitive capability
  • submit_beta_reviewno sensitive capability
  • submit_for_app_store_reviewno sensitive capability
  • trigger_buildno sensitive capability
  • update_variableno sensitive capability
  • validate_app_submissionno sensitive capability
  • validate_codemagic_yamlno sensitive capability
  • wait_for_buildno 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
v1.0.5 latest A 93/100 11 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: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/codemagic-mcp-server/badge.svg)](https://mcptrustchecker.com/registry/codemagic-mcp-server)
HTML
<a href="https://mcptrustchecker.com/registry/codemagic-mcp-server"><img src="https://mcptrustchecker.com/registry/codemagic-mcp-server/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/codemagic-mcp-server/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 codemagic-mcp-server --online

Use the free API → How scoring works

Other implementations of Codemagic 1

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

More in Developer Tools