asc-mcp
This server provides comprehensive App Store Connect management from your coding agent, with 40+ opinionated tools and 6 slash-command workflows.
Key capabilities:
App & Version Info: List all apps, get detailed app info (version, build, status), check review status.
Reviews & Customer Feedback: List reviews filtered by rating; triage reviews into action themes (bug, feature, etc.) via MCP Sampling (no extra LLM cost); draft public response (never auto-posts, follows Apple guideline 1.2).
Sales & Analytics: Download sales reports (units, proceeds, territory, daily/weekly/monthly/yearly); analyze keyword insights and competitor snapshots.
Release Preparation: Run pre-submission preflight checks (metadata limits, screenshots, build); daily briefing across all apps; generate release notes from git commits; compare live vs pending metadata.
App Submission & Release Control: Create versions, edit metadata, upload screenshots, attach builds, submit for review, release (with explicit confirmation), manage phased releases, set pricing, availability, categories, copyright, age ratings, review contact, etc.
TestFlight: List beta groups, assign builds, invite testers.
Binary Build & Upload: Set up App Store signing, download provisioning profiles, build and archive locally via Xcode, upload IPA.
In-App Purchases & Subscriptions: Create IAPs and subscriptions with localizations, pricing, and review screenshots.
Pre-built Workflows: Use slash commands like
/asc-ship-release,/asc-weekly-review,/asc-rejection-audit,/asc-release-go-no-go,/asc-start,/asc-first-appfor multi-tool automation.AI Integration: Includes a Claude Skill for auto-triggering review-related tasks; leverages MCP Sampling for LLM-powered features without extra server costs.
Integration with Apple's App Store Connect API, providing tools for managing apps, reviews, sales reports, preflight checks, release notes generation, and more for iOS and macOS apps.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@asc-mcpRun a preflight check on my app"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
App Store Connect MCP Server
Full control of App Store Connect from your coding agent. 40 tools: read intelligence that thinks, plus write/control that ships your app end to end (edit metadata, upload screenshots, attach builds, TestFlight, submit, release, even build and upload the binary locally). 6 slash-command workflows and a bundled Claude Skill. Not another API wrapper.
asc-mcp.pages.dev · npm · Pricing: free tier, Pro $9/mo
Maintained successor to JoshuaRileyDev/app-store-connect-mcp-server (archived Feb 2026). Different angle, same API surface plus more.
npm install -g @pofky/asc-mcp
npx @pofky/asc-mcp install-skill # one-line, optional, for auto-routed review questionsWhat Makes This Different
Other ASC MCP servers wrap the API and give you 80 to 293 raw endpoints. This one gives you 40 opinionated tools, 6 slash-command Prompts, and a Claude Skill that all think. The read tools summarize and audit; the Pro control tools actually drive App Store Connect, from editing metadata to submitting and releasing, with the same API key. Two tools use MCP Sampling: your own client's model does the LLM work, so there is no extra cost from this server.
Why full control is possible without fastlane: fastlane's deliver and pilot are just calls to the same App Store Connect REST API this server authenticates against with your .p8. So nearly everything you would script with fastlane is a tool here, no Ruby toolchain required. The only step that needs your Mac is building and signing the binary, which build_and_archive and upload_binary drive via Xcode.
You say | What happens |
"Run a preflight check on my app" | Audits metadata, character limits, screenshots, build status. Catches the issues that cause 40% of rejections. |
"Give me a morning briefing" | Summarizes all your apps: who's in review, who got rejected, new low-rating reviews, action items. |
"Generate release notes from my git history" | Reads commits since last tag, categorizes them, and gives you structured data to write "What's New" text. |
"List my apps" | Shows all your iOS/macOS apps with bundle IDs |
"Is my app in review?" | Exact review state with context ("typical time: 24-48 hours") |
"Show me 1-star reviews" | Customer reviews filtered by rating, territory, sorted by date |
"What were my downloads this week?" | Sales and revenue summary by territory |
No context switching. No portal. Just ask.
Related MCP server: App Store Connect MCP Server
Setup (3 minutes)
Step 1. Create an API key in App Store Connect > Integrations > App Store Connect API (Admin or App Manager role), then grab three things from that same page:
Issuer ID (
ASC_ISSUER_ID): the UUID shown at the top of the page, with a copy button next to it.Key ID (
ASC_KEY_ID): the 10-character ID next to your key, also in the filenameAuthKey_XXXXXXXXXX.p8..p8file (ASC_PRIVATE_KEY_PATH): click Download and point this at the saved file. Apple lets you download it only once, so keep it safe.
Step 2. Install:
npm install -g @pofky/asc-mcpNo global install needed if you prefer npx (see the manual config below).
Fastest setup (recommended). Drop your .p8 into Apple's standard path ~/.appstoreconnect/private_keys/ (the file is named AuthKey_XXXXXXXXXX.p8, and the Key ID is in the filename). Then run:
npx @pofky/asc-mcp init --write # auto-detects the key, asks for your Issuer ID, and writes the config for you
# or: npx @pofky/asc-mcp init # same, but prints the block to paste yourselfinit --write finds your Claude Desktop / Claude Code config, backs it up, and merges in the server block, so there's no JSON editing. The server also auto-discovers the .p8 path at runtime, so you only ever need ASC_ISSUER_ID (and ASC_LICENSE_KEY for Pro).
Stuck? Run npx @pofky/asc-mcp doctor (or ask your agent to call asc_setup_check). It checks your key, Issuer ID, a live connection to App Store Connect, and your license, and prints the exact fix for anything wrong. In your agent, the /asc-start command walks a first-time user through all of this.
Manual setup. Add to your agent's MCP config (Claude Desktop config, or ~/.claude.json for Claude Code). Use npx for zero-install, or asc-mcp if you installed globally:
{
"mcpServers": {
"appstore-connect": {
"command": "npx",
"args": ["-y", "@pofky/asc-mcp"],
"env": {
"ASC_ISSUER_ID": "YOUR_ISSUER_ID"
}
}
}
}With the .p8 in ~/.appstoreconnect/private_keys/, ASC_ISSUER_ID is the only required env var (Key ID and key path are auto-detected). Add ASC_LICENSE_KEY to unlock Pro.
Step 3. Ask your agent: "List my App Store Connect apps"
Works with Claude Code, Cursor, Windsurf, Cline, and any MCP-compatible client.
Tools
Free (no account needed)
Tool | What it does |
| Run first if anything's off. Checks your key, Issuer ID, a live App Store Connect connection, and license tier, and prints the exact fix for each failure. |
| Start here. The in-agent playbook for every flow (first release, update, IAP, subscriptions, reviews, TestFlight, binary), with each manual App Store Connect website step flagged inline. See also USER_GUIDE.md and LIMITATIONS.md. |
| List all your apps with name, bundle ID, SKU, platform |
| Version history, build status, release state, dates |
| Current review state with human-readable context |
Pro ($9/mo)
Tool | What it does | Why it matters |
| Customer reviews filtered by rating, territory, sort order | See what users say without opening the portal |
| Daily/weekly/monthly downloads and revenue by territory | Know your numbers instantly |
| Pre-submission audit: metadata, char limits, screenshots, builds | Catches 40%+ of common rejection causes before you submit |
| Morning summary across all apps: status, reviews, rejections | One call replaces 10 minutes of portal clicking |
| Git commits since last tag, categorized for writing "What's New" | Your AI agent writes release notes from your actual changes |
| Analyze keywords against iTunes search competition, difficulty ratings | See which keywords are worth targeting at a glance |
| Look up any app: ratings, reviews, version, price, release notes | Competitive intelligence without leaving your editor |
| Compare live vs pending version metadata across all locales | Verify exactly what changed before submitting |
| Pulls recent reviews and clusters them into 3 to 5 themes with counts, action buckets, and quotes, using MCP Sampling | Zero extra cost: your client's model does the clustering |
| Drafts a public reply to a single review in the review's locale, via Sampling. Elicits tone if your client supports it. Never auto-posts. | Apple guideline 1.2 respected; you paste into ASC yourself |
Control & Ship (Pro)
These tools write to App Store Connect. Every outward-facing action (submit, release, upload binary) requires an explicit confirm: true, so nothing leaves your machine by accident.
Tool | What it does |
| Create a new editable App Store version for your next release |
| Edit description, keywords, what's-new, promo text, URLs, app name, subtitle. Validates Apple's character limits and refuses over-limit writes |
| Upload screenshots for a device display type (reserve, upload, commit, with checksum) |
| List recent builds and their processing state (VALID = ready) |
| Attach a build to the editable version (defaults to newest processed build) |
| Submit the version to App Review (modern reviewSubmissions flow). |
| Release an approved version to the public App Store. |
| Start, pause, resume, or complete the 7-day phased rollout |
| List your TestFlight beta groups |
| Push a build to a beta group so testers can install it |
| Invite an external tester by email and add them to a group |
| Set primary/secondary category, copyright, content-rights, and export-compliance (encryption) in one call |
| Set the base price by creating the price schedule ( |
| Make the app available in all App Store territories (or a subset), with auto-include for future ones |
| Set the App Review contact and optional demo account on the version |
| Set the v2 age-rating declaration (full content-descriptor set) |
| Guidance + deep link for the App Privacy nutrition labels (not API-addressable) |
| Guidance + deep link for the EU DSA trader status (not API-addressable) |
| Create a non-consumable/consumable IAP with localization, availability, and an auto-equalized price |
| Create a subscription group, sub, localization, availability, price, and free trial |
| Attach the App Review screenshot to a subscription or IAP |
| Download the app's App Store provisioning profiles and write a manual-signing |
| Build, archive, and export a signed |
| Upload the |
The whole flow chains: setup_app_store_signing to build_and_archive to upload_binary to list_builds (wait for VALID) to attach_build to update_version_metadata to upload_screenshots to set_app_metadata/set_app_price/set_app_availability/set_age_rating/set_review_contact to release_preflight to submit_for_review to release_version. The /asc-ship-release slash command drives it for you.
release_preflight is the single source of truth for "is this submittable": it checks every API-addressable field and ends with a tailored "Manual steps to finish" list for the few things Apple only allows in the website (first-IAP bundling, App Privacy nutrition labels, EU trader status).
Get Pro | Retrieve your license key
What stays manual (and why)
A handful of things Apple does not expose to API keys. The MCP never pretends otherwise: it either returns the exact website steps plus a deep link, or detects the case and aborts so nothing is half-done. Full detail in LIMITATIONS.md (and asc_guide topic:limitations):
Create an app record / App Group.
POST /v1/appsis forbidden for API keys; do it once in the website.App Privacy nutrition label. Not in the API.
set_privacy_nutritionreturns the checklist plus a deep link.EU DSA trader status. Not in the API.
set_eu_trader_statusreturns the steps. Legal decision.An app's first IAPs/subscriptions. Must be submitted with the version in the website;
submit_for_reviewaborts rather than orphan the version. Later products submit via the API.Certificate creation / cloud signing. Least-privilege keys can't;
setup_app_store_signinguses manual-signing profiles instead.Compiling the binary. Needs Xcode on your Mac (
build_and_archiveruns it locally).Posting a public review reply.
draft_review_responsewrites it; you paste it in the website.
How Sampling works (zero extra cost)
triage_reviews and draft_review_response use the MCP Sampling primitive. When you call one of these tools, this server sends a sampling/createMessage request back to your own MCP client. Your client runs the LLM locally (Claude Desktop uses your account; Claude Code uses its session). We never call Anthropic from our side.
Outcome: review clustering and reply drafting cost you exactly what you would pay for any other Claude request, not a penny more from this server.
If your MCP client does not support Sampling yet, both tools return a structured degraded: true result with a clear explanation. Upgrade Claude Desktop or Claude Code to a recent version for full functionality.
Slash Commands (Prompts)
Type these in Claude Desktop or Claude Code and the agent runs a pre-built multi-tool workflow:
Slash command | What it does |
| New here? Verifies the connection, lists your apps, explains free vs Pro in plain language, and recommends your next step. No App Store Connect knowledge assumed. |
| Calls |
| Given an |
| Given an |
| Given an |
| Given an |
These are MCP Prompts per the spec. Zero other App Store Connect MCP ships with them.
Claude Skill (one-line install)
After installing the MCP, run:
npx @pofky/asc-mcp install-skillThis copies a small asc-review-triage Skill to ~/.claude/skills/ so Claude automatically picks up review-related questions ("any bad reviews lately?", "what do my users say?", "ratings this week?") and calls the right ASC tools without you having to explain the workflow each time.
Works on macOS, Linux, and Windows. To remove: npx @pofky/asc-mcp uninstall-skill.
Real Output Examples
"Run a preflight check before I submit"
Release Preflight: v2.3
State: PREPARE_FOR_SUBMISSION
Platform: IOS
PASS (with 1 warning)
Warnings (recommended):
- Missing screenshot set for APP_IPHONE_67. May be required.
Passing checks: 4
- [en-US] Description OK (3874/4000 chars).
- [en-US] Keywords OK (96/100 chars).
- 2 screenshot set(s) found across 1 locale(s).
- Build 40 attached and valid.
Total: 4 pass, 1 warn, 0 fail"Morning briefing"
Daily Briefing - 2026-04-13
2 apps in your account
Tempo: Habit Builder
- Latest: v2.3 (IOS) - Waiting for Review
- Action needed: v2.3 is Waiting for Review
- Reviews (last 3d): 5 new, avg 4.2 stars
NightOwl Weather
- Latest: v1.1 (IOS) - Live
- No new reviews in the last 3 days"Generate release notes from git"
Git History for Release Notes
Since: v2.2.0
Commits: 8
Character limit: 4000 chars for "What's New"
New Features (3)
- feat: add habit streak calendar view
- feat: dark mode support
- add widget for home screen
Bug Fixes (2)
- fix: notification timing off by 1 hour
- fix: crash on iPad when rotating
Instructions: Write user-facing "What's New" text.
Lead with the most impactful change. Keep under 4000 chars.Why This One Over the Free Alternatives?
Raw API wrappers (free) | This server | |
Tool count | 80 to 293 | 36 opinionated tools (read + control) |
MCP Prompts (slash commands) | No | Yes, 3 pre-built workflows |
MCP Sampling (zero server-side LLM cost) | No | Yes, review triage + response drafts |
Claude Skill bundled | No | Yes, one-line install |
Pre-submission audit | No | Yes, catches rejections before you submit |
Cross-app briefings | No | Yes, one call, all apps |
Git-aware release notes | No | Yes, reads your project's commit history |
Smart review summaries | No | Yes, theme clustering, action items |
Setup | Build from source (Swift or Node) |
|
Free tier | Some | Yes, 3 tools, no account needed |
Raw wrappers give you endpoints. This gives you answers.
Security
Your credentials never leave your machine:
The
.p8private key is read locally. JWT tokens are generated on your computer.API calls go directly from your machine to
api.appstoreconnect.apple.com.The license server sees only your license key string. Zero Apple data, zero credentials.
Fully open source. Read the code.
Works With
Claude Code (Anthropic)
Any client supporting the Model Context Protocol
Requirements
Node.js 18+
Apple Developer Program membership
App Store Connect API key (Admin or App Manager role)
Legal
This project is not affiliated with, endorsed by, or sponsored by Apple Inc. Apple, App Store, App Store Connect, TestFlight, iOS, and macOS are trademarks of Apple Inc.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceMCP server for App Store Connect API with 208 tools across 25 workers. Manage apps, builds, TestFlight, in-app purchases, subscriptions, reviews, provisioning, screenshots, analytics, and more — directly from Claude, Cursor, VS Code, or any MCP client. Multi-account support, worker filtering, JWT auth.Last updated51MIT
- AlicenseAqualityCmaintenanceA Model Context Protocol (MCP) server for Apple's App Store Connect API. Manage your iOS, macOS, tvOS, and visionOS apps directly from Claude, Cursor, or any MCP-compatible client.Last updated525824MIT
- Alicense-qualityCmaintenanceA Model Context Protocol (MCP) server that connects Cursor, Claude Desktop, and other MCP clients to the official App Store Connect API—so you can manage iOS/macOS apps, TestFlight, in-app subscriptions, and store metadata via chat or automated tool calls.Last updated10311MIT
- Alicense-qualityAmaintenanceA Model Context Protocol server that exposes the entire Apple App Store Connect API (1,200+ operations) as MCP tools, enabling AI assistants to query apps, manage builds, handle submissions, read analytics, and more.Last updated21MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Appcircle mobile CI/CD platform.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pofky/asc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server