Skip to content
VS Code

play console mcp for VS Code

io.github.wiseappsai/play-console-mcp

Manage Google Play Console: releases, listings, monetization, reviews, and Android Vitals.

client:VS Code transport:stdio runtime:npm

Install play console mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "play-service-account-json",
      "description": "PLAY_SERVICE_ACCOUNT_JSON",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-application-credentials",
      "description": "GOOGLE_APPLICATION_CREDENTIALS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-developer-account-id",
      "description": "PLAY_DEVELOPER_ACCOUNT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-reports-bucket",
      "description": "PLAY_REPORTS_BUCKET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-storage-credentials",
      "description": "PLAY_STORAGE_CREDENTIALS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-toolsets",
      "description": "PLAY_TOOLSETS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "play-read-only",
      "description": "PLAY_READ_ONLY",
      "password": true
    }
  ],
  "servers": {
    "play-console-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wiseappsai/play-console-mcp"
      ],
      "env": {
        "PLAY_SERVICE_ACCOUNT_JSON": "${input:play-service-account-json}",
        "GOOGLE_APPLICATION_CREDENTIALS": "${input:google-application-credentials}",
        "PLAY_DEVELOPER_ACCOUNT_ID": "${input:play-developer-account-id}",
        "PLAY_REPORTS_BUCKET": "${input:play-reports-bucket}",
        "PLAY_STORAGE_CREDENTIALS": "${input:play-storage-credentials}",
        "PLAY_TOOLSETS": "${input:play-toolsets}",
        "PLAY_READ_ONLY": "${input:play-read-only}"
      }
    }
  }
}

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

play console mcp in other clients