Skip to content
VS Code

appstore release mcp for VS Code

io.github.rabdulsal/appstore-release-mcp

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

client:VS Code transport:stdio runtime:npm

Install appstore release mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apple-key-id",
      "description": "APPLE_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-issuer-id",
      "description": "APPLE_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-key-path",
      "description": "ASC_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-key-content",
      "description": "APPLE_KEY_CONTENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-team-id",
      "description": "APPLE_TEAM_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-bundle-id",
      "description": "ASC_BUNDLE_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-project-dir",
      "description": "ASC_PROJECT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-platform",
      "description": "ASC_PLATFORM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-fastlane-lane",
      "description": "ASC_FASTLANE_LANE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-fastlane-platform",
      "description": "ASC_FASTLANE_PLATFORM",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-upload-cmd",
      "description": "ASC_UPLOAD_CMD",
      "password": true
    }
  ],
  "servers": {
    "appstore-release-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "appstore-release-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "${input:apple-key-id}",
        "APPLE_ISSUER_ID": "${input:apple-issuer-id}",
        "ASC_KEY_PATH": "${input:asc-key-path}",
        "APPLE_KEY_CONTENT": "${input:apple-key-content}",
        "APPLE_TEAM_ID": "${input:apple-team-id}",
        "ASC_BUNDLE_ID": "${input:asc-bundle-id}",
        "ASC_PROJECT_DIR": "${input:asc-project-dir}",
        "ASC_PLATFORM": "${input:asc-platform}",
        "ASC_FASTLANE_LANE": "${input:asc-fastlane-lane}",
        "ASC_FASTLANE_PLATFORM": "${input:asc-fastlane-platform}",
        "ASC_UPLOAD_CMD": "${input:asc-upload-cmd}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

appstore release mcp in other clients