appnova-app-store-connect-mcp
Manage your iOS app's entire lifecycle including App Store Optimization, reviews, analytics, sales, finance reports, subscriptions, in-app purchases, pricing, app versions, TestFlight, and more via Apple's 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., "@appnova-app-store-connect-mcplist my apps"
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.
title: appnova-app-store-connect-mcp emoji: ๐ colorFrom: gray colorTo: red sdk: docker app_port: 7860 pinned: false
appnova-app-store-connect-mcp
App Store Connect MCP server for Claude โ manage your iOS app's entire lifecycle with natural language. No Docker, no Python, no pip. Just add 4 lines to your Claude config and start talking to your App Store.
48 tools ยท 14 categories ยท Hosted on Hugging Face Spaces ยท Free
Related MCP server: mcp-appstore-connect
Quick Start โ Zero Setup (Recommended)
No installation required. The server is already running on Hugging Face Spaces.
๐ Full installation guide with screenshots and troubleshooting: docs/installation.md
1. Get your App Store Connect API credentials
Go to App Store Connect โ Users and Access โ Integrations and create an API key with Admin or App Manager role. You'll need:
Issuer ID โ shown at the top of the API Keys page
Key ID โ shown next to your key
Private key โ download the
.p8file (only downloadable once)Vendor Number โ from Payments and Financial Reports
2. Add to your Claude client
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"appstore": {
"url": "https://haikuku-appnova-app-store-connect-mcp.hf.space/mcp",
"headers": {
"x-appstore-issuer-id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"x-appstore-key-id": "XXXXXXXXXX",
"x-appstore-private-key": "-----BEGIN PRIVATE KEY-----\\nMIGH...\\n-----END PRIVATE KEY-----",
"x-appstore-vendor-number": "12345678"
}
}
}
}Claude Code
Add to .mcp.json in your project root:
{
"mcpServers": {
"appstore": {
"type": "http",
"url": "https://haikuku-appnova-app-store-connect-mcp.hf.space/mcp",
"headers": {
"x-appstore-issuer-id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"x-appstore-key-id": "XXXXXXXXXX",
"x-appstore-private-key": "-----BEGIN PRIVATE KEY-----\\nMIGH...\\n-----END PRIVATE KEY-----",
"x-appstore-vendor-number": "12345678"
}
}
}
}3. Restart your Claude client
That's it. Ask Claude: "List my apps" to verify the connection.
How to format the private key
Open your .p8 file โ it looks like this:
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQg...
-----END PRIVATE KEY-----Important: In the JSON config you must use \\n (two characters: backslash + n) instead of real line breaks. Using a single \n creates an actual newline which breaks HTTP headers.
Use this one-liner to get the correctly formatted value:
awk '{printf "%s\\n", $0}' AuthKey_XXXXXXXXXX.p8 | sed '$ s/\\n$//'Paste the output directly as the x-appstore-private-key value.
Optional: Pin a default app
Add x-appstore-app-id to skip calling select_app every session:
"headers": {
"x-appstore-issuer-id": "...",
"x-appstore-key-id": "...",
"x-appstore-private-key": "...",
"x-appstore-vendor-number": "...",
"x-appstore-app-id": "6502225088"
}Use either the numeric App Store ID or bundle ID (e.g. com.example.yourapp).
Security
Your credentials are sent as HTTP headers directly to the server and used exclusively to sign JWT tokens for Apple's API. They are not logged, not stored, and not shared. Each request is fully isolated โ credentials from one user never touch another user's session.
The server is open source: github.com/alperduzgun/appnova-app-store-connect-mcp
If you prefer to host it yourself, see the Self-Hosting section below.
What You Can Do
App Store Optimization (ASO)
Tool | Description |
| List all localizations with IDs โ lightweight index, call first |
| Full metadata for one locale: name, subtitle, keywords, description, what's new |
| Update app name and/or subtitle (always editable, any version state) |
| Update keywords, description, what's new (requires PREPARE_FOR_SUBMISSION) |
| List all Custom Product Pages with version state and visibility |
| Full CPP detail including per-locale promotional text |
Reviews & Ratings
Tool | Description |
| Fetch reviews sorted by newest; filter by star rating (1โ5) |
| Average rating, total count, sample size |
| Post a new developer response |
| Edit an existing response in-place (preserves timestamp) |
| Delete a response before re-posting |
Analytics & Sales
Tool | Description |
| Impressions, page views, app units, conversion rate, sessions, crashes โ daily breakdown up to 365 days |
| Downloads, redownloads, updates, IAP, subscriptions, revenue โ daily breakdown up to 365 days |
Finance Reports
Tool | Description |
| Monthly proceeds by territory and currency for a specific month |
| Aggregated proceeds across the last N months (default 3, max 12) |
Subscriptions
Tool | Description |
| All subscription groups and their products |
| Create a new subscription group |
| Create a subscription product (weekly โ yearly) |
| Add localized name and description to a subscription |
In-App Purchases
Tool | Description |
| All IAPs: consumable, non-consumable, non-renewing |
| Create a new IAP product |
| Add localized display name and description |
| Delete a draft IAP |
Pricing
Tool | Description |
| All available price tiers for an IAP in a territory |
| Set IAP price by price point ID |
| Set IAP price by dollar amount โ auto-matches tier |
| All available price tiers for a subscription |
| Set subscription price by price point ID |
| Set subscription price by dollar amount โ auto-matches tier |
App Versions & Submission
Tool | Description |
| Recent versions with state (READY_FOR_SALE, IN_REVIEW, etc.) |
| Create a new version in PREPARE_FOR_SUBMISSION state |
| Submit a version for App Review |
| Withdraw an in-progress submission |
Phased Release
Tool | Description |
| Current phased rollout status for a version |
| Enable 7-day phased rollout (1%โ2%โ5%โ10%โ20%โ50%โ100%) |
| Pause, resume, or complete rollout immediately |
TestFlight
Tool | Description |
| Recent builds with processingState, version, expiration |
| All beta groups with public link info |
| Invite a tester to a beta group |
| Remove a tester from a beta group |
In-App Events
Tool | Description |
| All promotional events with state (DRAFT/LIVE/ARCHIVED) and localizations |
Bundle ID Capabilities
Tool | Description |
| Numeric ID, platform, name, and seed ID for a bundle identifier |
| All active capabilities (Sign in with Apple, Push, IAP, etc.) |
| Enable a capability โ idempotent, safe to call repeatedly |
| Remove a capability by resource ID |
App Selection
Tool | Description |
| All apps in your account |
| Set the active app by numeric ID or bundle ID |
| Show the currently selected app |
Example Workflows
ASO audit across all locales:
"Get all my app's locale metadata and tell me which ones are missing keywords
or have subtitles under 20 characters"Review triage:
"Show me all 1-star reviews from the last 50 and draft a response for each
one that mentions a crash"Revenue summary:
"Give me a finance summary for the last 3 months and compare monthly trends"Release workflow:
"Create a new 2.5.0 version, update the what's new text for en-US and tr,
then submit for review"Capability check:
"List all active capabilities for com.example.myapp and confirm Sign in with
Apple is enabled"Requirements
App Store Connect API key with Admin or App Manager role
Claude Desktop 0.10+ (or any MCP client that supports HTTP transport with custom headers)
Self-Hosting
Want to run the server yourself? Full source code and setup instructions at github.com/alperduzgun/appnova-app-store-connect-mcp.
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/alperduzgun/appnova-app-store-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server