App Store Connect MCP Server
A Model Context Protocol server that wraps Apple's App Store Connect API v2, enabling management of apps, in-app purchases, subscriptions, TestFlight, product page experiments, and App Review submissions via natural language.
README
App Store Connect MCP Server
<p align="center"> <img src="docs/hero.jpg" alt="App Store Connect MCP Server" width="700"> </p>
A Model Context Protocol server that wraps Apple's App Store Connect API v2. Gives Claude (or any MCP client) direct access to manage apps, in-app purchases, subscriptions, TestFlight, product page experiments, and App Review submissions.
What You Can Do
Apps — List apps, view details, check version history and statuses.
In-App Purchases — Create, update, delete IAPs. Manage localizations and pricing. Submit for review.
Subscriptions — Manage subscription groups and products. Set prices per territory. Create introductory and promotional offers.
Product Page Optimization — Create custom product pages. Run A/B test experiments and check results.
Builds & TestFlight — List builds, manage beta groups and testers, distribute builds to test groups.
App Review — Check review status, view rejection reasons, submit versions for review. Update descriptions, keywords, and What's New text per locale.
See the full tool reference for all 46+ available tools.
Prerequisites
- Node.js 18+
- An Apple Developer account with App Store Connect access
- An App Store Connect API key (
.p8file) — how to create one
Setup
- Clone and install:
git clone https://github.com/yuraist/appstoreconnect-mcp.git
cd appstoreconnect-mcp
npm install
npm run build
- Create a
.envfile from the example:
cp .env.example .env
- Fill in your API credentials:
ASC_ISSUER_ID=your-issuer-id
ASC_KEY_ID=your-key-id
ASC_PRIVATE_KEY_PATH=/path/to/AuthKey_XXXXXXXXXX.p8
You'll find the Issuer ID and Key ID on the App Store Connect API Keys page.
Usage with Claude Desktop
Add this to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"appstoreconnect": {
"command": "node",
"args": ["/absolute/path/to/appstoreconnect-mcp/build/index.js"],
"env": {
"ASC_ISSUER_ID": "your-issuer-id",
"ASC_KEY_ID": "your-key-id",
"ASC_PRIVATE_KEY_PATH": "/path/to/AuthKey_XXXXXXXXXX.p8"
}
}
}
}
Restart Claude Desktop. The App Store Connect tools will appear in the tool list.
Usage with Claude Code
Add the server to your project:
claude mcp add appstoreconnect -- node /absolute/path/to/appstoreconnect-mcp/build/index.js
Or add it globally:
claude mcp add --scope user appstoreconnect -- node /absolute/path/to/appstoreconnect-mcp/build/index.js
Make sure the environment variables are set in your shell, or use the .env file in the project directory.
Example Prompts
Once connected, try asking Claude:
- "List all my apps in App Store Connect"
- "Show me the current review status for my app"
- "Create a new consumable IAP called 'Premium Gems' with product ID com.example.gems"
- "What subscription groups do I have for app X?"
- "Add this build to the External Testers beta group"
- "Start an A/B test experiment on the current version"
Security
Your API key (.p8 file) never leaves your machine. The MCP server runs locally, authenticating directly with Apple's API using short-lived JWTs.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.