Home › Development › appstore-release-mcp

appstore-release-mcp

App Store release pilot — version bump, TestFlight upload, metadata, review submission

TypeScript Local macOS
★ 0 stars Last pushed 2026-08-19 License: MIT

Topics: Developer Tools

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 0.1.1)

npx -y appstore-release-mcp@0.1.1

Or add to your MCP client config:

{
  "mcpServers": {
    "appstore-release-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp@0.1.1"
      ],
      "env": {
        "APPLE_KEY_ID": "<YOUR_VALUE>",
        "APPLE_ISSUER_ID": "<YOUR_VALUE>",
        "ASC_KEY_PATH": "<YOUR_VALUE>",
        "APPLE_KEY_CONTENT": "<YOUR_VALUE>",
        "APPLE_TEAM_ID": "<YOUR_VALUE>",
        "ASC_BUNDLE_ID": "<YOUR_VALUE>",
        "ASC_PROJECT_DIR": "<YOUR_VALUE>",
        "ASC_PLATFORM": "<YOUR_VALUE>",
        "ASC_FASTLANE_LANE": "<YOUR_VALUE>",
        "ASC_FASTLANE_PLATFORM": "<YOUR_VALUE>",
        "ASC_UPLOAD_CMD": "<YOUR_VALUE>"
      }
    }
  }
}
  • APPLE_KEY_ID required — App Store Connect API key ID
  • APPLE_ISSUER_ID required — App Store Connect API issuer ID
  • ASC_KEY_PATH — Path to the .p8 App Store Connect API private key (alternative: APPLE_KEY_CONTENT with base64-encoded key)
  • APPLE_KEY_CONTENT secret — Base64-encoded .p8 private key content (alternative to ASC_KEY_PATH)
  • APPLE_TEAM_ID — Apple Developer team ID (required for builds/uploads)
  • ASC_BUNDLE_ID required — Bundle identifier of the app to manage, e.g. com.example.myapp
  • ASC_PROJECT_DIR — Xcode project root where fastlane runs (default: current working directory)
  • ASC_PLATFORM — App Store platform: IOS (default), MAC_OS, TV_OS, or VISION_OS
  • ASC_FASTLANE_LANE — Fastlane lane used for archive + upload (default: beta)
  • ASC_FASTLANE_PLATFORM — Fastlane platform prefix, e.g. mac or ios
  • ASC_UPLOAD_CMD — Full override of the upload command, e.g. 'bundle exec fastlane ios beta'

Related servers

Listed in punkpeye/awesome-mcp-servers (MIT)

Data from the Official MCP Registry