heimdall

heimdall is a skill for Claude Code, Codex from erayendes/app-store-connect-mcp. It costs 180 tokens per session (2,265 once invoked), scanned A, original, MIT.

A skill for managing an Apple app through App Store Connect using Heimdall's focused tool groups. App Store Connect is Apple's service for publishing apps, managing testing, purchases, reviews, and app reports.

In plain words
What is it for?
Use it to manage app metadata, TestFlight builds and testers, subscription and purchase prices, reviews, sales and analytics reports, certificates, and provisioning profiles.
Why use it?
It keeps the large Apple API divided into smaller groups so an agent can use the relevant operations without loading every operation at once.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Codex.

Part of the heimdall plugin — 2 skills, 1 MCP server shipped together

Good fit Use it to manage app metadata, TestFlight builds and testers, subscription and purchase prices, reviews, sales and analytics reports, certificates, and provisioning profiles.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/erayendes/app-store-connect-mcp/heimdall
Install

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.

Any agent
npx skills add erayendes/app-store-connect-mcp --skill heimdall
Clone the repo
git clone --depth 1 https://github.com/erayendes/app-store-connect-mcp

Made for: Claude Code, Codex.

Or install heimdall, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

Wrote 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.

agentmods badge for heimdall

README.md
[![agentmods](https://agentmods.dev/badge/skills/erayendes/app-store-connect-mcp/heimdall/github.svg)](https://agentmods.dev/skills/erayendes/app-store-connect-mcp/heimdall)
Your own site
<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.

agentmods 80×15 button for heimdall

Your own site · 80×15
<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>
Per session 180 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,265 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
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]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 10d ago against content hash 21fe765b4abc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

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`.
skills/heimdall/SKILL.md · 170 lines

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 .p8 on disk. A shell running as this user can reach that key: security find-generic-password -w prints 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.

Read the full file on GitHub · 170 lines

Changes

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.

  1. 10d ago First seen · 170 lines · 180 tokens per session scan A 21fe765b4abc

Subscribe to this mod's changes

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.

Related

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…

abd3lraouf-studios/app-store-connect-mcp · 94 tokens

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.

rorkai/app-store-connect-cli-skills · 51 tokens

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.

rorkai/app-store-connect-cli-skills · 60 tokens

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…

rorkai/app-store-connect-cli-skills · 79 tokens

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.

rorkai/app-store-connect-cli-skills · 39 tokens

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…

rorkai/app-store-connect-cli-skills · 71 tokens