app-store-connect-mcp
Provides tools for interacting with Apple's App Store Connect, enabling management of apps, metadata localizations, app store versions, analytics reports, sales reports, and finance reports.
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., "@app-store-connect-mcpList all my apps in App Store Connect"
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
An MCP server for App Store Connect that works with Claude Desktop and Claude Code.
It focuses on two practical workflows:
Read App Store Connect app and version data
Read App Analytics report pipelines and safely prepare metadata updates
Features
App tools
list_appsget_applist_app_infosget_app_info_localizationsget_app_store_versionsget_app_store_version_localizations
Analytics tools
list_analytics_report_requestscreate_analytics_report_requestget_analytics_report_request_statusdiagnose_analytics_pipelinelist_analytics_reportslist_analytics_report_instanceslist_analytics_report_segmentsdownload_analytics_report_segmentreset_analytics_report_request
Sales and finance tools
download_sales_reportsummarize_app_sales_reportdownload_finance_report
Metadata tools
update_app_info_localizationupdate_app_store_version_localization
Related MCP server: asc-mcp
Security
This project is designed to avoid storing credentials in source control.
Do not commit
.envDo not commit
*.p8Store your App Store Connect private key outside the repository
Use
dryRun=truebefore any metadata updateReal metadata changes require
dryRun=falseandconfirm=true
The server only reads credentials from environment variables:
APP_STORE_CONNECT_ISSUER_IDAPP_STORE_CONNECT_KEY_IDAPP_STORE_CONNECT_PRIVATE_KEY_PATHAPP_STORE_CONNECT_VENDOR_NUMBER
Project structure
src/
index.ts
config.ts
auth.ts
client.ts
types.ts
tools/
apps.ts
analytics.ts
metadata.ts
shared.tsRequirements
Node.js 20+
An App Store Connect API key
Access to the App Store Connect API for your Apple account
Setup
1. Install dependencies
npm install2. Create your environment file
Copy .env.example to .env and fill in your own values:
cp .env.example .envExample:
APP_STORE_CONNECT_ISSUER_ID=YOUR_ISSUER_ID
APP_STORE_CONNECT_KEY_ID=YOUR_KEY_ID
APP_STORE_CONNECT_PRIVATE_KEY_PATH=/absolute/path/to/AuthKey_XXXXXXXXXX.p8
APP_STORE_CONNECT_VENDOR_NUMBER=YOUR_VENDOR_NUMBER3. Build
npm run buildRun locally
Development:
npm run devProduction build:
npm startScripts
npm run dev— run the server from TypeScript sourcenpm run build— compile TypeScript todist/npm start— start the built MCP servernpm run test:connection— test the App Store Connect connectionnpm run inspect— run a local MCP client against the server
Claude Code setup
Option 1: project-scoped config
This repository includes a shareable .mcp.json:
{
"mcpServers": {
"app-store-connect": {
"command": "npm",
"args": ["start"]
}
}
}If Claude Code is opened in this project, it can use that project config.
Option 2: user-scoped config
claude mcp add app-store-connect -s user \
-e APP_STORE_CONNECT_ISSUER_ID=YOUR_ISSUER_ID \
-e APP_STORE_CONNECT_KEY_ID=YOUR_KEY_ID \
-e APP_STORE_CONNECT_PRIVATE_KEY_PATH=/absolute/path/to/AuthKey_XXXXXXXXXX.p8 \
-- node /absolute/path/to/app-store-connect-mcp/dist/index.jsClaude Desktop setup
Add this to claude_desktop_config.json:
{
"mcpServers": {
"app-store-connect": {
"command": "node",
"args": [
"/absolute/path/to/app-store-connect-mcp/dist/index.js"
],
"env": {
"APP_STORE_CONNECT_ISSUER_ID": "YOUR_ISSUER_ID",
"APP_STORE_CONNECT_KEY_ID": "YOUR_KEY_ID",
"APP_STORE_CONNECT_PRIVATE_KEY_PATH": "/absolute/path/to/AuthKey_XXXXXXXXXX.p8"
}
}
}
}Restart Claude Desktop after saving the config.
Example prompts
Try these in Claude:
Run the list_apps tool and show my appsUse get_app for a specific app IDUse list_app_infos for app 123456789 and include localizationsUse get_app_info_localizations for a specific app info IDUse get_app_store_versions for app 123456789 and include localizationsList analytics report requests for app 123456789Create an ONGOING analytics report request for app 123456789Diagnose the analytics pipeline for app 123456789Get analytics request status for request abc123Reset analytics report request abc123 for app 123456789 as ONGOINGSummarize the latest SALES summary report for app 123456789Download the SUBSCRIPTION daily report for my vendor numberRun update_app_info_localization in dry run mode to compare a title or subtitle changeRun update_app_store_version_localization in dry run mode and compare the proposed changes
Troubleshooting analytics reports
If App Store Connect shows Analytics data in the web UI but MCP cannot download analytics reports, the usual cause is that Apple hasn't generated report instances yet for the Analytics Reports API.
Recommended workflow:
Run
diagnose_analytics_pipelinefor the app ID.If the result is
NO_REQUEST, create anONGOINGrequest.If the result is
NO_INSTANCES, wait 1-2 days after the request was created. Apple documents that the first request can take that long before instances appear.If the result is
STOPPED_DUE_TO_INACTIVITY, usereset_analytics_report_requestto replace the inactive request.If you need older backfill, create a
ONE_TIME_SNAPSHOTrequest. Apple allows one snapshot request per month.
Important notes from Apple:
The first time a report type is requested, an Admin role may be required.
Once a report type has been requested, Sales and Reports or Finance roles can download generated reports.
Report instances expire after 35 days, so historical recovery may require a new
ONE_TIME_SNAPSHOTrequest.
Notes on permissions
Different App Store Connect API roles can unlock different endpoints.
App metadata and localization work typically require
App Manageror broaderAnalytics report management may require
Admin, depending on the endpointSales and Trends reports typically require
Sales and ReportsFinance reports typically require
Finance
If a tool returns 403 FORBIDDEN_ERROR, check the role attached to your App Store Connect API key.
Output behavior
stdoutis reserved for MCP protocol trafficLogs are sent to
stderrCredentials and private key contents are never printed by this project
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.
Related MCP Servers
- AlicenseBqualityFmaintenanceAn MCP server to communicate with the App Store Connect API for iOS Developers2582330MIT
- AlicenseAqualityAmaintenanceAn opinionated MCP server for App Store Connect that provides 13 curated tools, slash-command workflows, and a Claude Skill to manage apps, reviews, sales, and pre-submission audits via natural language.411,235MIT
- AlicenseAqualityCmaintenanceAn MCP server that gives AI assistants structured access to App Store Connect data. Built for ASO analysis, download tracking, and performance monitoring.7141MIT
- AlicenseBqualityCmaintenanceAn unofficial MCP server for the App Store Connect API that enables automation of app management, reviews, TestFlight, analytics, and release processes through natural language.63992MIT
Related MCP Connectors
MCP server for Appcircle mobile CI/CD platform.
MCP server for interacting with the Supabase platform
Create App Store screenshots, icons, ASO copy, localization, and revisions via hosted MCP.
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/ahmetutluau/app-store-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server