appstore-mcp
Provides tools to interact with Apple's App Store Connect API, covering apps, in-app purchases, subscriptions, pricing, TestFlight, provisioning, analytics, and more.
Provides tools to manage app metadata, versions, pricing, availability, review submission, and customer reviews on the App Store.
Provides tools to interact with Xcode Cloud, including listing CI products, workflows, starting builds, and retrieving build actions.
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-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.
appstore-mcp
An MCP server, written in Rust, that exposes the Apple App Store Connect API to AI agents. It covers the full product lifecycle β apps & metadata, in-app purchases, subscriptions and their offers, pricing & availability, App Store versions, App Review submission, TestFlight, provisioning & signing, asset uploads, promoted purchases, customer reviews, phased release, users & access, in-app events, Xcode Cloud, and analytics reports β across 113 tools, and can reach any other App Store Connect endpoint through two generic JSON:API tools.
Built on the official rmcp SDK over stdio.
π Full tool reference β docs/TOOLS.md β every tool's purpose and parameters.
Design: hybrid coverage
The App Store Connect API has hundreds of endpoints but is uniformly JSON:API. Rather than a tool per endpoint, this server is hybrid:
Curated tools (111) for the common, multi-step, or error-prone workflows β apps & metadata, IAPs, subscriptions & offers, versions, pricing, availability, App Review submission, TestFlight, provisioning, asset uploads, promoted purchases, customer reviews, phased release, users, in-app events, Xcode Cloud, analytics reports, and custom product pages.
Two generic escape-hatch tools β
appstore_requestandappstore_listβ that can call any endpoint with raw JSON:API documents.
Related MCP server: asc-mcp
Tools
Group | Tools |
Generic |
|
Apps & metadata |
|
In-app purchases (v2) |
|
Subscriptions |
|
Versions & metadata |
|
App Review submission |
|
Pricing |
|
Availability |
|
TestFlight |
|
Provisioning & signing |
|
Assets |
|
Subscription offers |
|
Offer codes |
|
Promoted purchases |
|
Customer reviews |
|
Phased release |
|
Users & access |
|
In-app events |
|
Xcode Cloud |
|
Analytics reports |
|
Custom product pages |
|
See docs/TOOLS.md for each tool's description and parameters. Custom product page
images are uploaded with the existing upload_app_screenshot / upload_app_preview tools.
Install
Prebuilt binaries for macOS (universal), Linux (x86-64), and Windows (x86-64) are attached to every GitHub Release. Pick the channel for your client; all of them need credentials (see Credentials).
Claude Desktop β one-click bundle
Download appstore-mcp.mcpb from the latest release and open it with Claude Desktop
(Settings β Extensions β Install Extensionβ¦, or drag the file onto the window).
It prompts for your Issuer ID, Key ID, and .p8 key file. The bundle ships
all three platforms' binaries and selects the right one automatically.
Claude Code β plugin marketplace
/plugin marketplace add forgeopslabs/appstore-mcp
/plugin install appstore-mcp@forgeopslabsThe plugin launches the appstore-mcp binary from your PATH, so install it first β
download the binary for your OS from the latest release
and put it on your PATH, or cargo install --git https://github.com/forgeopslabs/appstore-mcp.
Set ASC_ISSUER_ID, ASC_KEY_ID, and ASC_PRIVATE_KEY_PATH in the environment you start
Claude Code from.
Codex
Codex configures MCP servers directly (no marketplace). With appstore-mcp on your PATH:
codex mcp add appstore \
--env ASC_ISSUER_ID=... --env ASC_KEY_ID=... \
--env ASC_PRIVATE_KEY_PATH=/path/AuthKey_XXXXXX.p8 \
-- appstore-mcpor in ~/.codex/config.toml:
[mcp_servers.appstore]
command = "appstore-mcp"
args = []
env = { ASC_ISSUER_ID = "...", ASC_KEY_ID = "...", ASC_PRIVATE_KEY_PATH = "/path/AuthKey_XXXXXX.p8" }MCP Registry
Published as io.github.forgeopslabs/appstore-mcp (metadata in
server.json) so any MCP-aware client can discover it.
From source
cargo build --release # -> target/release/appstore-mcpCredentials
Generate a Team Key in App Store Connect β Users and Access β Integrations β
App Store Connect API, and download the .p8 file. Then set:
Variable | Required | Description |
| β | Issuer UUID shown above the keys table. |
| β | The API key's Key ID. |
| one of | Inline |
| one of | Path to the downloaded |
| optional | Override the API origin. |
| optional | Log filter (to stderr). Default |
See .env.example. The server authenticates each request with a
short-lived ES256 JWT signed by your key (cached and refreshed automatically).
The server starts even without credentials so a client can list its tools; tool calls then return an actionable configuration error until creds are set.
Build & run
cargo build --release
ASC_ISSUER_ID=... ASC_KEY_ID=... ASC_PRIVATE_KEY_PATH=/path/AuthKey_XXX.p8 \
./target/release/appstore-mcpThe server speaks MCP over stdio. Logs go to stderr; stdout is the protocol channel.
Use with an MCP client
Example client config (e.g. Claude Desktop's mcpServers):
{
"mcpServers": {
"appstore": {
"command": "/absolute/path/to/appstore-mcp/target/release/appstore-mcp",
"env": {
"ASC_ISSUER_ID": "00000000-0000-0000-0000-000000000000",
"ASC_KEY_ID": "ABCD123456",
"ASC_PRIVATE_KEY_PATH": "/absolute/path/to/AuthKey_ABCD123456.p8"
}
}
}
}Inspect with the MCP Inspector
npx @modelcontextprotocol/inspector ./target/release/appstore-mcpUsage notes
IDs are opaque. List/get first to resolve app, IAP, subscription, set, and price-point IDs, then pass them to create/update tools.
Pricing needs a price point. Use
list_iap_price_points/list_subscription_price_pointsto get theidforset_iap_price_schedule/set_subscription_price.Asset uploads (
upload_*) take a local file path and run the full reserve β chunked upload β MD5 commit flow in one call. Screenshots/previews require an existingappScreenshotSet/appPreviewSet; create those with the generic tools if needed.Anything not listed is reachable via
appstore_request(raw method + path + JSON:API body) orappstore_list(paginated GET). Example:appstore_request { "method": "GET", "path": "/v1/apps/123/customerReviews" }.Not covered: sales/finance report endpoints return gzipped TSV (not JSON:API) and are out of scope for these tools.
Limitations (enforced by Apple)
You cannot create an app via the API. The
appsresource only allows GET and UPDATE βPOST /v1/appsreturns403 FORBIDDEN_ERROR. Create the app record in the App Store Connect website (Apps β β β New App); you can pre-create its bundle ID withcreate_bundle_id. All other tools operate on an existing app.A deleted in-app purchase's
productIdis permanently reserved by Apple and cannot be reused.
Development
cargo test # unit tests (JWT signing, MD5, body builders)
cargo clippy --all-targets -- -D warnings
cargo fmt --checkRegenerate the tool reference after adding/changing tools (needs the release binary; no credentials required):
cargo build --release && python3 scripts/gen_tools_doc.py # rewrites docs/TOOLS.mdLive integration tests
scripts/integration_test.py drives the compiled server against the real API.
Read-only by default; --write adds a self-cleaning IAP lifecycle.
cargo build --release
# Credentials via env (ASC_ISSUER_ID/ASC_KEY_ID/ASC_PRIVATE_KEY_PATH) or local
# appstore-connect.txt + AuthKey_*.p8 in the repo root (both gitignored).
python3 scripts/integration_test.py --app <APP_ID> # read-only sweep
python3 scripts/integration_test.py --app <APP_ID> --write # + write lifecycleLicense
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
- Alicense-qualityAmaintenanceMCP server for App Store Connect API with 208 tools across 25 workers. Manage apps, builds, TestFlight, in-app purchases, subscriptions, reviews, provisioning, screenshots, analytics, and more β directly from Claude, Cursor, VS Code, or any MCP client. Multi-account support, worker filtering, JWT auth.Last updated51MIT
- AlicenseAqualityBmaintenanceAn 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.Last updated13232MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to manage Apple App Store Connect operations including app management, TestFlight, analytics, reviews, subscriptions, and more through 54 tools.Last updated618210MIT
- Alicense-qualityCmaintenanceEnables AI agents to manage Apple App Store Connect through the official API, including apps, metadata, reviews, TestFlight, provisioning, users, and reports.Last updatedMIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.
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/forgeopslabs/appstore-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server