Appstoreconnect MCP Server

App Store Connect for MCP clients: PPP pricing, subscriptions, TestFlight, reviews, reports & more

Local serverstdioGo

What is the Appstoreconnect MCP server?

App Store Connect for MCP clients: PPP pricing, subscriptions, TestFlight, reviews, reports & more. That is what the appstoreconnect mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

The first published surface is subscription pricing — including a Purchasing Power Parity rebalance flow that's already been used to schedule 120 production price changes across 65 territories on a real iOS app. New ASC domains (TestFlight, sales, screenshots, IAPs) are designed to plug in one file at a time; see Roadmap.

Getting it running

@akoskomuves/appstoreconnect-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • Apps — The Apps tool exposed by this server
  • Subscriptions — The Subscriptions tool exposed by this server
  • Territories — The Territories tool exposed by this server

What it needs from you

Configuration is passed through the environment: ASC_ISSUER_ID, ASC_KEY_ID, ASC_PRIVATE_KEY_PATH, ASC_IAP_ISSUER_ID, ASC_IAP_KEY_ID, ASC_IAP_PRIVATE_KEY_PATH. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Appstoreconnect's toolset — Apps, Subscriptions, Territories — is a fair guide to whether it matches your workflow. It is maintained by akoskomuves; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
AppsThe Apps tool exposed by this server.
SubscriptionsThe Subscriptions tool exposed by this server.
TerritoriesThe Territories tool exposed by this server.

How to install the Appstoreconnect MCP server

{
  "mcpServers": {
    "appstoreconnect": {
      "command": "npx",
      "args": ["-y", "@akoskomuves/appstoreconnect-mcp"],
      "env": {
        "ASC_ISSUER_ID": "your-value",
        "ASC_KEY_ID": "your-value",
        "ASC_PRIVATE_KEY_PATH": "your-value",
        "ASC_IAP_ISSUER_ID": "your-value",
        "ASC_IAP_KEY_ID": "your-value",
        "ASC_IAP_PRIVATE_KEY_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ASC_ISSUER_IDConfiguration value read at startup.Optional
ASC_KEY_IDCredential the server authenticates with.Yes
ASC_PRIVATE_KEY_PATHCredential the server authenticates with.Yes
ASC_IAP_ISSUER_IDConfiguration value read at startup.Optional
ASC_IAP_KEY_IDCredential the server authenticates with.Yes
ASC_IAP_PRIVATE_KEY_PATHCredential the server authenticates with.Yes

Example prompts to try

  • Use Appstoreconnect to Apps.
  • Use Appstoreconnect to Subscriptions.
  • Use Appstoreconnect to Territories.

Frequently asked questions

It connects Appstoreconnect to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Apps, Subscriptions, Territories) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Appstoreconnect directly.