Skip to content
VS Code

App Store & Google Play for VS Code

io.github.johnbilousov/appstore-play-mcp

Read-only access to App Store Connect and Google Play: apps, releases, and reviews.

client:VS Code transport:stdio runtime:npm

Install App Store & Google Play in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asc-key-id",
      "description": "ASC_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-issuer-id",
      "description": "ASC_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-key-path",
      "description": "ASC_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-service-account-path",
      "description": "PLAY_SERVICE_ACCOUNT_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-packages",
      "description": "PLAY_PACKAGES",
      "password": true
    }
  ],
  "servers": {
    "appstore-play-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "appstore-play-mcp"
      ],
      "env": {
        "ASC_KEY_ID": "${input:asc-key-id}",
        "ASC_ISSUER_ID": "${input:asc-issuer-id}",
        "ASC_KEY_PATH": "${input:asc-key-path}",
        "PLAY_SERVICE_ACCOUNT_PATH": "${input:play-service-account-path}",
        "PLAY_PACKAGES": "${input:play-packages}"
      }
    }
  }
}

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

App Store & Google Play in other clients