Appstore Connect MCP Server

Full control of your App Store Connect from your coding agent. 40 tools incl. asc_setup_check (self-diagnosing setup) and asc_guide (the in-agent

Local serverstdioGo

What is the Appstore Connect MCP MCP server?

Full control of your App Store Connect from your coding agent. 40 tools incl. asc_setup_check (self-diagnosing setup) and asc_guide (the in-agent playbook that flags every manual website step), read intelligence (reviews, sales. Exposed over MCP by the appstore connect mcp mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Maintained successor to JoshuaRileyDev/app-store-connect-mcp-server (archived Feb 2026). Different angle, same API surface plus more.

Adding it to your client

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

Configuration

You will need 5 environment variables: ASC_ISSUER_ID, ASC_KEY_ID, ASC_PRIVATE_KEY_PATH, ASC_LICENSE_KEY, YOUR_ISSUER_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js 18+ - Apple Developer Program membership - App Store Connect API key (Admin or App Manager role)

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. It is maintained by pofky; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the appstore connect mcp mcp server does with a few real requests.

How to install the Appstore Connect MCP MCP server

{
  "mcpServers": {
    "appstore-connect": {
      "command": "npx",
      "args": ["-y", "@pofky/asc-mcp"],
      "env": {
        "ASC_ISSUER_ID": "your-value",
        "ASC_KEY_ID": "your-value",
        "ASC_PRIVATE_KEY_PATH": "your-value",
        "ASC_LICENSE_KEY": "your-value",
        "YOUR_ISSUER_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18+ - Apple Developer Program membership - App Store Connect API key (Admin or App Manager role)
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_LICENSE_KEYCredential the server authenticates with.Yes
YOUR_ISSUER_IDConfiguration value read at startup.Optional

Frequently asked questions

It connects Appstore Connect MCP to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Appstore Connect MCP directly.