PluginBench
MCP Server
Active
MIT

io.github.rabdulsal/appstore-release-mcp MCP Server

io.github.rabdulsal/appstore-release-mcp

What is the io.github.rabdulsal/appstore-release-mcp MCP server?

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

How to install io.github.rabdulsal/appstore-release-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • 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'

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "appstore-release-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "<YOUR_APPLE_KEY_ID>",
        "APPLE_ISSUER_ID": "<YOUR_APPLE_ISSUER_ID>",
        "ASC_KEY_PATH": "<YOUR_ASC_KEY_PATH>",
        "APPLE_KEY_CONTENT": "<YOUR_APPLE_KEY_CONTENT>",
        "APPLE_TEAM_ID": "<YOUR_APPLE_TEAM_ID>",
        "ASC_BUNDLE_ID": "<YOUR_ASC_BUNDLE_ID>",
        "ASC_PROJECT_DIR": "<YOUR_ASC_PROJECT_DIR>",
        "ASC_PLATFORM": "<YOUR_ASC_PLATFORM>",
        "ASC_FASTLANE_LANE": "<YOUR_ASC_FASTLANE_LANE>",
        "ASC_FASTLANE_PLATFORM": "<YOUR_ASC_FASTLANE_PLATFORM>",
        "ASC_UPLOAD_CMD": "<YOUR_ASC_UPLOAD_CMD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "appstore-release-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "<YOUR_APPLE_KEY_ID>",
        "APPLE_ISSUER_ID": "<YOUR_APPLE_ISSUER_ID>",
        "ASC_KEY_PATH": "<YOUR_ASC_KEY_PATH>",
        "APPLE_KEY_CONTENT": "<YOUR_APPLE_KEY_CONTENT>",
        "APPLE_TEAM_ID": "<YOUR_APPLE_TEAM_ID>",
        "ASC_BUNDLE_ID": "<YOUR_ASC_BUNDLE_ID>",
        "ASC_PROJECT_DIR": "<YOUR_ASC_PROJECT_DIR>",
        "ASC_PLATFORM": "<YOUR_ASC_PLATFORM>",
        "ASC_FASTLANE_LANE": "<YOUR_ASC_FASTLANE_LANE>",
        "ASC_FASTLANE_PLATFORM": "<YOUR_ASC_FASTLANE_PLATFORM>",
        "ASC_UPLOAD_CMD": "<YOUR_ASC_UPLOAD_CMD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "appstore-release-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "<YOUR_APPLE_KEY_ID>",
        "APPLE_ISSUER_ID": "<YOUR_APPLE_ISSUER_ID>",
        "ASC_KEY_PATH": "<YOUR_ASC_KEY_PATH>",
        "APPLE_KEY_CONTENT": "<YOUR_APPLE_KEY_CONTENT>",
        "APPLE_TEAM_ID": "<YOUR_APPLE_TEAM_ID>",
        "ASC_BUNDLE_ID": "<YOUR_ASC_BUNDLE_ID>",
        "ASC_PROJECT_DIR": "<YOUR_ASC_PROJECT_DIR>",
        "ASC_PLATFORM": "<YOUR_ASC_PLATFORM>",
        "ASC_FASTLANE_LANE": "<YOUR_ASC_FASTLANE_LANE>",
        "ASC_FASTLANE_PLATFORM": "<YOUR_ASC_FASTLANE_PLATFORM>",
        "ASC_UPLOAD_CMD": "<YOUR_ASC_UPLOAD_CMD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "appstore-release-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "<YOUR_APPLE_KEY_ID>",
        "APPLE_ISSUER_ID": "<YOUR_APPLE_ISSUER_ID>",
        "ASC_KEY_PATH": "<YOUR_ASC_KEY_PATH>",
        "APPLE_KEY_CONTENT": "<YOUR_APPLE_KEY_CONTENT>",
        "APPLE_TEAM_ID": "<YOUR_APPLE_TEAM_ID>",
        "ASC_BUNDLE_ID": "<YOUR_ASC_BUNDLE_ID>",
        "ASC_PROJECT_DIR": "<YOUR_ASC_PROJECT_DIR>",
        "ASC_PLATFORM": "<YOUR_ASC_PLATFORM>",
        "ASC_FASTLANE_LANE": "<YOUR_ASC_FASTLANE_LANE>",
        "ASC_FASTLANE_PLATFORM": "<YOUR_ASC_FASTLANE_PLATFORM>",
        "ASC_UPLOAD_CMD": "<YOUR_ASC_UPLOAD_CMD>"
      }
    }
  }
}
Claude Code
claude mcp add appstore-release-mcp --env APPLE_KEY_ID=<YOUR_APPLE_KEY_ID> --env APPLE_ISSUER_ID=<YOUR_APPLE_ISSUER_ID> --env ASC_KEY_PATH=<YOUR_ASC_KEY_PATH> --env APPLE_KEY_CONTENT=<YOUR_APPLE_KEY_CONTENT> --env APPLE_TEAM_ID=<YOUR_APPLE_TEAM_ID> --env ASC_BUNDLE_ID=<YOUR_ASC_BUNDLE_ID> --env ASC_PROJECT_DIR=<YOUR_ASC_PROJECT_DIR> --env ASC_PLATFORM=<YOUR_ASC_PLATFORM> --env ASC_FASTLANE_LANE=<YOUR_ASC_FASTLANE_LANE> --env ASC_FASTLANE_PLATFORM=<YOUR_ASC_FASTLANE_PLATFORM> --env ASC_UPLOAD_CMD=<YOUR_ASC_UPLOAD_CMD> -- npx -y appstore-release-mcp

Related MCP servers

Control a real Chrome browser to complete any task: fill forms, extract data, book flights.

110k
Python
MIT
View repository →

Real-time global intelligence: markets, conflicts, country risk, energy, and infrastructure monitoring via 39 MCP tools.

83k
TypeScript
AGPL-3.0
View repository →

Netdata

Active

Real-time infrastructure monitoring with per-second metrics, ML-powered anomaly detection, and zero-configuration setup.

80k
Go
GPL-3.0
View repository →

Trending hip-hop artist momentum scores across four cultural dimensions.

79k
TypeScript
MIT
View repository →

AI orchestration platform with 100+ agents, swarm coordination, and self-learning memory for enterprise development.

68k
TypeScript
MIT
View repository →

Web scraping with stealth HTTP, real browsers, and Cloudflare bypass capabilities.

67k
Python
BSD-3-Clause
View repository →