asc-mcp
Provides tools for interacting with Apple's App Store Connect API, enabling app registration, metadata upload, TestFlight management, and submission for review.
Enables management of App Store app versions, metadata, screenshots, pricing, TestFlight groups and testers, and submission for review via the App Store Connect API.
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-mcpship my app with bundle ID com.example.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.
asc-mcp
App Store Connect MCP Server — register, test, ship.
Every other ASC MCP can list your apps. This one ships them — and now manages TestFlight too.
One tool, 28 actions. Bundle ID registration, metadata, screenshots, age rating, TestFlight groups + testers, composite one-call shipping — all from your AI agent.
Why This Exists
Existing ASC MCP servers (JoshuaRileyDev 288 stars, SardorbekR 13 stars) are read-heavy, write-light. They can list apps and manage basic TestFlight. None can submit for review. None have composite actions.
We built this after shipping two iOS apps entirely from Claude Code's CLI — and burning ~15 API calls just discovering age rating field types. The schemas are now baked in.
Related MCP server: mcp-appstore-connect
What It Does
Read
Action | What |
| Returns all ASC API schemas — age rating fields, categories, screenshot types. Call this first. |
| List all apps |
| Find app by bundle ID |
| App details + versions |
| Version details + localizations |
| Recent builds + processing state + TestFlight status |
| Check review status |
| List TestFlight groups (internal + external) |
| List TestFlight testers for an app |
Write
Action | What |
| Register a new bundle ID (identifier + name, optional platform) |
| Description, keywords, promo text, support URL, what's new |
| Subtitle, privacy URL, categories |
| All 22 fields in one call — defaults to 4+ (NONE/false) |
| Copyright text on version |
| Third-party content declaration |
| Export compliance (most apps: |
| Set price to FREE |
| Attach a processed build to a version |
| Reviewer contact info + notes |
| Upload screenshots with auto-cleanup of existing sets |
| Full 3-step submission: create → add version → confirm |
TestFlight
Action | What |
| Create internal or external testing group |
| Assign a build to a beta group |
| Add tester by email (optionally to a specific group) |
| Set "What to Test" for a build |
| Set TestFlight description + feedback email |
Composites (multi-step in one call)
Action | What |
| One call: set encryption → beta app info → what-to-test → create/find group → add build. TestFlight live in one action. |
| One call: find app → get version → get build → set encryption → attach build → age rating → content rights. App ready for metadata + submission. |
Schemas Baked In
The stuff that wastes tokens if you don't know it:
Age rating: 13 enum fields (
NONE/INFREQUENT_OR_MILD/FREQUENT_OR_INTENSE) + 9 boolean fields. ALL required in one PATCH call.Categories: String IDs like
TRAVEL,SOCIAL_NETWORKING— not UUIDs.Screenshot types:
iphone_67→APP_IPHONE_67(1290x2796), etc.Phone format: Must be international:
+44 844 209 0611Privacy labels: No API — must use ASC web UI (we tell you this upfront instead of letting you waste calls discovering it).
App creation: Cannot be done via API — must use ASC web UI (Apple limitation).
Setup
1. Get an API Key
App Store Connect → Users and Access → Integrations → Keys → Generate.
You need:
Key ID (from the key name, e.g.,
V82Q36H9CR)Issuer ID (UUID at the top of the Keys page)
.p8key file (download once, save to~/private_keys/)
2. Install
Using uv (recommended):
cd /path/to/asc-mcp
uv venv && uv pip install fastmcp PyJWT cryptographyOr with pip:
pip install fastmcp PyJWT cryptography3. Configure
Add to your .mcp.json (Claude Code, Cursor, etc.):
{
"mcpServers": {
"asc": {
"command": "python3",
"args": ["/path/to/asc-mcp/server.py"],
"env": {
"ASC_KEY_ID": "YOUR_KEY_ID",
"ASC_ISSUER_ID": "YOUR_ISSUER_ID",
"ASC_KEY_PATH": "~/private_keys/AuthKey_XXXX.p8"
}
}
}
}If your key is in ~/private_keys/AuthKey_*.p8, Key ID and path are auto-discovered. You still need ASC_ISSUER_ID.
Example: Ship an App (8 calls)
asc action=schema
asc action=find_app bundle_id=com.example.myapp
asc action=upload_metadata version_id=XXX description="My app" keywords="app,cool"
asc action=set_age_rating app_id=XXX
asc action=set_pricing_free app_id=XXX
asc action=upload_screenshots version_id=XXX display_type=iphone_67 screenshot_paths=["/path/1.png","/path/2.png"]
asc action=attach_build version_id=XXX build_id=YYY
asc action=submit_for_review app_id=XXX version_id=XXXExample: Ship an App (2 calls with composites)
asc action=ship_app bundle_id=com.example.myapp
asc action=submit_for_review app_id=XXX version_id=XXXExample: TestFlight (1 call)
asc action=testflight_setup app_id=XXX build_id=YYY whats_new="Test the new onboarding flow" beta_description="Beta version of MyApp" feedback_email=dev@example.comExample: Add a Tester
asc action=add_beta_tester app_id=XXX email_addr=tester@example.com first_name=Jane last_name=DoeKnown Limitations
Privacy nutrition labels cannot be set via the ASC API. You must use the App Store Connect web UI.
App creation cannot be done via API (Apple 403s the endpoint). Register apps in the ASC web UI.
IPA upload is done via
xcrun altool, not this MCP (Apple's Transporter handles binary upload, not the REST API).Paid apps: Only
set_pricing_freeis implemented. Paid tiers need price point lookup per territory.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/anupamchugh/asc-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server