Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add erayendes/app-store-connect-mcp --skill heimdallgit clone --depth 1 https://github.com/erayendes/app-store-connect-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/erayendes/app-store-connect-mcp/heimdall)<a href="https://agentmods.dev/skills/erayendes/app-store-connect-mcp/heimdall"><img src="https://agentmods.dev/badge/skills/erayendes/app-store-connect-mcp/heimdall/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/erayendes/app-store-connect-mcp/heimdall"><img src="https://agentmods.dev/badge/skills/erayendes/app-store-connect-mcp/heimdall.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 3 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Data Exfiltration · line 31 Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
- medium MCP Rug Pull · line 84 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 94 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00180 | $0.02265 |
| Opus 5 | $0.00090 | $0.01132 |
| Sonnet 5 | $0.00036 | $0.00453 |
| Haiku 4.5 | $0.00018 | $0.00227 |
Grade A, and why
heimdall scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
with `curl`. How it starts
The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Heimdall is one binary serving several separately scoped MCP servers, one per
profile: asc-monetization, asc-distribution, asc-testflight and so on.
Apple's API is 982 operations, which costs more in tool definitions than most
context windows can spare, so a session carries one or a few profiles rather
than all of them.
The credential boundary
Going after the API key is the single most common way a session goes wrong: in
recorded runs, of the sessions that left the tools behind, the largest group
went hunting for the private key and the next largest called Apple directly
with curl.
Neither is the way through, and the reason is worth stating exactly, because the convenient version of it is false:
- The JWT is minted inside the server, per request, from a key the server
reads at startup — on macOS out of the Keychain, elsewhere from a
.p8on disk. A shell running as this user can reach that key:security find-generic-password -wprints it to whatever asks. So this is a rule, not a wall, and a session that tests it will find it gives way. - Which is exactly why crossing it is the wrong move rather than an impossible
one. A token signed outside the server skips the rate limiter, the
write-confirmation gate, the dry-run path and the response shaping — every
guard this server exists to apply.
curl https://api.appstoreconnect.apple.com/...is not the fallback when a tool returns an error: unsigned it returns 401, and hand-signed it runs unguarded against real App Store data.
So when an App Store Connect tool fails, the next step is always another tool
call — asc__status to check the connection, asc__search_tools to find a
different operation — never the shell. If the credentials genuinely are not
configured, asc__status says so, and the fix is setup (below), which only
the user can run.
Least privilege
No endpoint returns a key's role, so a 403 partway through a task is often the
first anyone learns the key is narrower than assumed. Before telling the user
their key is broken or asking them to mint an Admin one, call asc__status
with check_capabilities: true — one cheap probe per role family
(reports, metadata, reviews, userManagement, provisioning), each
ok / forbidden / unauthorized / agreement / unknown. unknown means
the probe was inconclusive (network, a 5xx, no app to test against) —
agreement means the account has an unsigned or expired agreement, the same
403 a narrow role gives for an unrelated reason. Never read either as a
denial that a wider key would fix — agreement in particular is not a role
problem at all, and no key clears it.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 10d ago First seen · 170 lines · 180 tokens per session scan A 21fe765b4abc
heimdall is a skill published in the GitHub repository erayendes/app-store-connect-mcp (48 stars, last pushed today), licensed MIT. It adds 180 tokens to every session and 2,265 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
app-store-connect
App Store Connect and TestFlight work through the asc MCP tools — releases, builds, review status, pricing, territory availability, screenshots, customer reviews, analytics reports. Use whenever the user mentions App Store Connect, ASC, TestFlight, App Review, IAP or subscription pricing, App Store screenshots…
asc-revenuecat-catalog-sync
Reconcile App Store Connect subscriptions and in-app purchases with RevenueCat products, entitlements, offerings, and packages using asc and RevenueCat MCP. Use when setting up or syncing subscription catalogs across ASC and RevenueCat.
asc-localize-metadata
Automatically translate and sync App Store metadata (description, keywords, what's new, subtitle) to multiple languages using LLM translation and asc CLI. Use when asked to localize an app's App Store listing, translate app descriptions, or add new languages to App Store Connect.
asc-shots-pipeline
Orchestrate iOS screenshot automation with xcodebuild/simctl for build-run, AXe for UI actions, JSON settings and plan files, Koubou-based framing (asc screenshots frame), and screenshot upload (asc screenshots upload). Use when users ask for automated screenshot capture, AXe-driven simulator flows, frame composition…
asc-metadata-sync
Sync, validate, and apply App Store metadata with the current asc canonical metadata workflow. Use when updating metadata, localizations, keywords, or migrating legacy fastlane metadata.
asc-release-flow
Orchestrate App Store releases with asc, including staging a version, uploading or building an artifact, publishing, and submitting for review. Use when the user wants to prepare or execute a release. Keep Game Center item preparation in this skill; route other readiness failures, stuck submissions, cancellation, and…