Skip to content
VS Code

Google Play Console MCP for VS Code

io.github.agimaulana/google-play-mcp

Google Play release lifecycle: tracks, testers, rollout, and Android Vitals.

client:VS Code transport:stdio runtime:pypi

Install Google Play Console MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-application-credentials",
      "description": "GOOGLE_APPLICATION_CREDENTIALS",
      "password": true
    }
  ],
  "servers": {
    "google-play-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "google-play-mcp"
      ],
      "env": {
        "GOOGLE_APPLICATION_CREDENTIALS": "${input:google-application-credentials}"
      }
    }
  }
}

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

Google Play Console MCP in other clients