
App Store Connect
- 11 repo stars
- Updated April 27, 2026
- beautyfree/appstore-connect-mcp
App Store Connect MCP is an MCP server that lets agents call Apple App Store Connect API operations using JWT API key auth.
About
This MCP server exposes Apple App Store Connect API capabilities to coding agents so iOS developers can query and change store resources without clicking through every pane in the web console. It supports apps, TestFlight builds and groups, subscriptions, localizations, and reporting flows described in the catalog blurb, authenticated with standard App Store Connect API JWT material. Configure APP_STORE_CONNECT_KEY_ID, APP_STORE_CONNECT_ISSUER_ID, and APP_STORE_CONNECT_P8_PATH for required access; vendor number is optional unless you need sales or finance reports. The npm package mcp-asc runs over stdio, which fits Claude Code and Cursor configs on the machine where your.p8 key lives. For developers shipping a single app, the server turns repetitive ASC tasks—beta routing, subscription tweaks, locale strings—into agent-callable tools during launch week and ongoing ASO passes. Version 2.0.4 is the published package pin in server metadata.
- App Store Connect API coverage: apps, TestFlight, subscriptions, localizations
- Finance and sales reporting when APP_STORE_CONNECT_VENDOR_NUMBER is set
- npm mcp-asc stdio package at version 2.0.4
- JWT auth via Key ID, Issuer ID, and .p8 private key path env vars
- stdio transport for local agent-driven release ops
App Store Connect by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env APP_STORE_CONNECT_KEY_ID=YOUR_APP_STORE_CONNECT_KEY_ID --env APP_STORE_CONNECT_ISSUER_ID=YOUR_APP_STORE_CONNECT_ISSUER_ID --env APP_STORE_CONNECT_P8_PATH=YOUR_APP_STORE_CONNECT_P8_PATH --env APP_STORE_CONNECT_VENDOR_NUMBER=YOUR_APP_STORE_CONNECT_VENDOR_NUMBER mcp-asc -- npx -y mcp-ascAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 11 |
|---|---|
| Package | mcp-asc |
| Transport | STDIO |
| Auth | Required |
| Last updated | April 27, 2026 |
| Repository | beautyfree/appstore-connect-mcp ↗ |
What it does
Connect App Store Connect API through MCP so your agent can manage apps, TestFlight, subscriptions, localizations, and sales reports with JWT credentials.
Who is it for?
Best when you already have App Store Connect API keys and want agent-driven store ops during ASO and release.
Skip if: Android-only products, developers without Apple API key access, or teams forbidden from storing.p8 paths on dev machines.
What you get
After you add mcp-asc with your .p8 credentials, your agent can run ASC reads and writes as MCP tools from the same repo as your app.
- MCP tools backed by App Store Connect API for apps and TestFlight
- Agent-driven subscription and localization operations where API allows
- Optional sales and finance report access with vendor number configured
By the numbers
- npm package mcp-asc version 2.0.4
- Three required secret environment variables for JWT auth
- Optional APP_STORE_CONNECT_VENDOR_NUMBER for reports
README.md
App Store Connect MCP
App Store Connect in your AI agent. MCP server for the official App Store Connect API.
A 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 instead of clicking through the App Store Connect UI.
Use it to: list and inspect apps, builds, and beta groups · manage TestFlight testers and review submissions · create and update subscription groups and prices · edit App Store version localizations and "What's New" · download sales and finance reports · list Xcode schemes and CI products. All with JWT auth and the same API Apple's own tools use.
Install
Cursor (install link):
Other clients (Claude Desktop, etc.):
npx add-mcp mcp-asc
Configure
Add the server to your MCP config and set these environment variables:
| Variable | Required | Description |
|---|---|---|
APP_STORE_CONNECT_KEY_ID |
Yes | API Key ID from App Store Connect |
APP_STORE_CONNECT_ISSUER_ID |
Yes | Issuer ID from App Store Connect |
APP_STORE_CONNECT_P8_PATH |
Yes | Path to your .p8 private key file |
APP_STORE_CONNECT_VENDOR_NUMBER |
For reports | Needed for sales/finance reports |
Create an API key at App Store Connect → Users and Access → Integrations → App Store Connect API. Download the .p8 and note Key ID and Issuer ID.
Example (stdio):
{
"mcpServers": {
"app-store-connect": {
"command": "npx",
"args": ["-y", "mcp-asc"],
"env": {
"APP_STORE_CONNECT_KEY_ID": "YOUR_KEY_ID",
"APP_STORE_CONNECT_ISSUER_ID": "YOUR_ISSUER_ID",
"APP_STORE_CONNECT_P8_PATH": "/path/to/AuthKey_XXXXX.p8",
"APP_STORE_CONNECT_VENDOR_NUMBER": "YOUR_VENDOR_NUMBER_OPTIONAL"
}
}
}
}
Example (HTTP SSE): Run npm run build then npm run start:http. Point your client at http://localhost:3001/mcp with the same env vars.
Tools
Tools are exposed in kebab-case. Use your MCP client to list them and see parameters. Summary by area:
Apps & metadata
list-apps,get-app,list-app-infos,get-app-info,get-app-availabilitylist-app-store-versions,get-app-store-version,create-app-store-version,update-app-store-versionlist-app-store-version-localizations,list-app-categories,list-app-encryption-declarations,list-nominations
TestFlight / Beta
list-beta-groups,get-beta-group,list-beta-testers,get-beta-tester,add-beta-testers-to-group,remove-beta-testers-from-grouplist-builds,get-build,list-build-beta-details,list-pre-release-versions,get-pre-release-versionlist-beta-app-localizations,list-beta-app-review-details,list-beta-app-review-submissions,list-beta-license-agreements,get-beta-license-agreement,update-beta-license-agreement
Subscriptions
list-subscription-groups,list-subscription-group-subscriptions,get-subscription,create-subscription-group,create-subscriptioncreate-subscription-availability,list-subscription-price-points,create-subscription-price,create-subscription-localization
Store & review
list-review-submissions,get-review-submission,submit-for-review,list-customer-reviews,create-customer-review-responseget-app-store-review-detail,update-app-store-review-detail
Other
list-bundle-ids,get-bundle-id·list-certificates,get-certificate·list-profiles·list-devices,get-devicelist-users,get-user,list-user-invitations·list-territories·list-actors,get-actorget-eula,update-eula·get-phased-release,create-phased-release·update-age-rating-declarationlist-schemes(Xcode),list-ci-products(Xcode Cloud)download-sales-report,download-finance-report(requireAPP_STORE_CONNECT_VENDOR_NUMBER)
Development
Built with xmcp. One tool per file under src/tools/; each file exports metadata and a default handler.
npm install
npm run build
npm run start:stdio # or npm run start:http for HTTP transport
npm run dev # watch + run
Node 20+.
Open Plugins
This repository now includes Open Plugins-compatible metadata and layout:
.plugin/plugin.jsonfor plugin metadata.mcp.jsonfor MCP server wiringskills/app-store-connect/SKILL.mdfor installable skill context
Open Plugins standard: open-plugins.com
You can test locally by loading the plugin directory in a compatible host, for example:
claude --plugin-dir .
Listing in MCP catalogs
To add this server to the official MCP Registry, Cursor MCP Directory, cursor.store, and other catalogs, see docs/REGISTRY.md.
License
MIT.
Links
Recommended MCP Servers
How it compares
Apple ASC API MCP bridge, not a cross-store ASO copywriter skill or TestFlight-only CLI with no MCP.
FAQ
Who is App Store Connect MCP for?
It is for iOS developers using MCP agents who manage listings, TestFlight, and subscriptions via App Store Connect API keys.
When should I use App Store Connect MCP?
Use it in Launch and Ship when you are updating store metadata, beta groups, or subscription settings and want tools instead of manual ASC UI work.
How do I add App Store Connect MCP to my agent?
Install npm mcp-asc, set KEY_ID, ISSUER_ID, and P8_PATH environment variables, and register the stdio server in your Claude Code or Cursor MCP config.