appstore-release-mcp
Provides tools for managing the full App Store release cycle: version bumping, binary upload (via fastlane), metadata updates, review submission, and status checking through the App Store Connect API.
Allows running your fastlane lanes for archiving, signing, and uploading your app binary to App Store Connect as an async job with log polling.
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., "@appstore-release-mcpRun asc_doctor to verify my configuration"
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.
appstore-release-mcp
An MCP server that drives the full App Store release cycle for iOS and macOS apps: version bump → archive + TestFlight upload → metadata → review submission → status.
What makes it different: existing App Store Connect MCP servers wrap the REST API — metadata, TestFlight management, analytics. None of them can do the one step the REST API doesn't support: archiving, signing, and uploading your binary. This server is a release pilot, not an API browser:
Direct ASC REST API (ES256 JWT, zero-dependency signing via
node:crypto) for status, builds, metadata, and review submissionYour existing fastlane lane for archive + sign + upload, run as an async job with log polling (a real archive takes 5–15 minutes — no MCP timeout can hold that)
Local version bumping across
project.pbxproj(andproject.ymlfor xcodegen projects)
Requirements
macOS with Xcode + command line tools
fastlane with a lane that builds and uploads (e.g.
beta) — only needed forasc_upload_build; all other tools are pure RESTAn App Store Connect API key (
.p8)
Related MCP server: app-publish-mcp
Setup
Generate an ASC API key (once): App Store Connect → Users and Access → Integrations → App Store Connect API → Team Keys → Generate (role: App Manager). Download the
.p8— Apple lets you download it exactly once. Keep it in~/.appstoreconnect/private_keys/.Register with Claude Code:
claude mcp add appstore \
-e APPLE_KEY_ID=XXXXXXXXXX \
-e APPLE_ISSUER_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx \
-e ASC_KEY_PATH=$HOME/.appstoreconnect/private_keys/AuthKey_XXXXXXXXXX.p8 \
-e APPLE_TEAM_ID=XXXXXXXXXX \
-e ASC_BUNDLE_ID=com.example.myapp \
-e ASC_PROJECT_DIR=/path/to/your/xcode/project \
-- npx appstore-release-mcpFor a macOS app whose Fastfile uses platform :mac, add -e ASC_PLATFORM=MAC_OS -e ASC_FASTLANE_PLATFORM=mac.
Verify: ask the agent to run
asc_doctor. All checks should be ✓.
Tools
Tool | What it does |
| Verify config, creds, fastlane, xcodebuild, app record — run first |
| Versions + review states + recent builds in one call |
| Build processing states (wait for |
| Bump build number / set marketing version in local project files |
| Run your fastlane upload lane as an async job — returns job ID immediately |
| Poll a build job; status + log tail |
| Description / keywords / what's-new / promo text via REST |
| Attach build + create review submission + submit |
Release walkthrough
asc_doctor # toolchain healthy?
asc_bump_version {marketing_version: "1.1.0"}
asc_upload_build # → job id
asc_job_status {job_id} # poll until succeeded
asc_list_builds # wait for processingState VALID
asc_update_metadata {whats_new: "...", create_version: "1.1.0"}
asc_submit_review {build_id} # point of no return
asc_app_status # WAITING_FOR_REVIEWEnvironment variables
Credential names deliberately match fastlane's app_store_connect_api_key, so one credential set serves both.
Var | Required | Notes |
| yes | ASC API key ID |
| yes | ASC issuer ID |
| one of | base64-encoded |
| for builds | Apple Developer team ID |
| yes | your app's bundle identifier |
| recommended | Xcode project root where fastlane runs (default: cwd) |
| no |
|
| no | upload lane name (default: |
| no | fastlane platform prefix, e.g. |
| no | full override, e.g. |
Notes
Build jobs are children of the server process; if the MCP client disconnects mid-build the job dies. Logs persist in
~/.appstore-mcp/jobs/either way.asc_submit_reviewis the point of no return for a release — the tool description tells agents to confirm with a human first.
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/rabdulsal/appstore-release-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server