A Python [Model Context Protocol](https://modelcontextprotocol.io/) server that lets AI assistants (Claude, etc.) manage the full Google Play Store
Connect Googleplayconsolemcp to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A Python Model Context Protocol server that lets AI assistants (Claude, etc.) manage the full Google Play Store release lifecycle directly — from uploading artifacts to managing testers, rollouts, and. The googleplayconsolemcp mcp server is what makes that connection.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
list_tracks — Returns all tracks with their releases, rollout percentages, statuses, and country availabilityget_track_info — Returns a human-readable summary plus releases with status, rollout %, version codes, and release notescreate_release — Creates or replaces a release on the given track. Use status="inProgress" with a rollout_percentage for a staged production rollout, orupdate_release — Update an existing release. Common use cases: - Increase rollout: update_release(pkg, rollout_percentage=50) - Complete rollout:promote_release — Copies a release from one track to another. Release notes and name are inherited from the source release unless explicitly overriddenlist_artifacts — Returns all APKs and AABs sorted by version code (newest first) with SHA hashesupload_artifact — Uploads an APK or AAB (auto-detected from extension) and creates a release on the given track in a single atomic operation. Returns the assignedupload_to_internal_sharing — Uploads a build to Internal App Sharing (bypasses track assignment) and returns a shareable downloadUrl. Testers must have Internal App Sharingget_testers — Returns the list of tester email addresses and Google Groups for the trackupdate_testers — The update_testers tool exposed by this serverget_crash_rate — Returns daily crashRate, userPerceivedCrashRate, and distinctUsers per version code. Google's bad behavior threshold for user-perceived crash rate isget_anr_rate — Returns daily anrRate, userPerceivedAnrRate, and distinctUsers per version code. Google's bad behavior threshold for user-perceived ANR rate isInstallation goes through your MCP client rather than a global install: point it at google-play-mcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Configuration is passed through the environment: GOOGLE_APPLICATION_CREDENTIALS. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
uv — install guide 2. A Google Cloud service account with the JSON key downloaded. 3. The service account added to Google Play Console with the correct permissions (see below). 4. These APIs enabled in your Google Cloud project: - [Google Play Android DeveloperThis sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Googleplayconsolemcp's toolset — list_tracks, get_track_info, create_release and 11 more — is a fair guide to whether it matches your workflow. It is maintained by agimaulana; worth a glance at recent repository activity before you build anything load-bearing on it.
This entry was verified against Googleplayconsolemcp's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.
| Tool | What it does |
|---|---|
| list_tracks | Returns all tracks with their releases, rollout percentages, statuses, and country availability. |
| get_track_info | Returns a human-readable summary plus releases with status, rollout %, version codes, and release notes. |
| create_release | Creates or replaces a release on the given track. Use status="inProgress" with a rollout_percentage for a staged production rollout, or status="completed" to release to all users immediately. |
| update_release | Update an existing release. Common use cases: - **Increase rollout:** update_release(pkg, rollout_percentage=50) - **Complete rollout:** update_release(pkg, rollout_percentage=100) - **Halt rollout:** update_release(pkg, |
| promote_release | Copies a release from one track to another. Release notes and name are inherited from the source release unless explicitly overridden. |
| list_artifacts | Returns all APKs and AABs sorted by version code (newest first) with SHA hashes. |
| upload_artifact | Uploads an APK or AAB (auto-detected from extension) and creates a release on the given track in a single atomic operation. Returns the assigned version code. |
| upload_to_internal_sharing | Uploads a build to Internal App Sharing (bypasses track assignment) and returns a shareable downloadUrl. Testers must have Internal App Sharing enabled in their Play Store settings. Ideal for quick one-off testing withou |
| get_testers | Returns the list of tester email addresses and Google Groups for the track. |
| update_testers | The update_testers tool exposed by this server. |
| get_crash_rate | Returns daily crashRate, userPerceivedCrashRate, and distinctUsers per version code. Google's bad behavior threshold for user-perceived crash rate is **~1.09%**. |
| get_anr_rate | Returns daily anrRate, userPerceivedAnrRate, and distinctUsers per version code. Google's bad behavior threshold for user-perceived ANR rate is **~0.47%**. |
| get_vitals_summary | Returns a combined crash + ANR summary aggregated per version code, with averages over the period and exceedsCrashThreshold / exceedsAnrThreshold flags. The latest version is highlighted as latestVersionSummary. |
| get_wakelock_rate | Returns daily stuckBackgroundWakelockRate and distinctUsers per version code. Relevant for 2026 Google Play battery health enforcement — apps with an excessive proportion of sessions holding a partial wake lock for more |
{
"mcpServers": {
"google-play": {
"command": "uvx",
"args": ["google-play-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/absolute/path/to/service-account.json"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
uv — install guide 2. A Google Cloud service account with the JSON key downloaded. 3. The service account added to Google Play Console with the correct permissions (see below). 4. These APIs enabled in your Google Cloud project: - [Google Play Android Developer| Variable | Description | Required |
|---|---|---|
| GOOGLE_APPLICATION_CREDENTIALS | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.