play-store-mcp
Provides tools for managing app releases, store listings, reviews, monetization, testers, and analytics for Google Play Console.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@play-store-mcpcheck the crash rate for my app"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
play-store-mcp
Local stdio MCP server for Google Play Console. Credentials (a Google service-account
key) come only from environment variables; OAuth tokens are minted locally by
google-auth-library; every request goes directly to *.googleapis.com. Nothing is sent to
any third party.
TypeScript reimplementation — the Kotlin project antoniolg/play-store-mcp
was used only as a reference for the API flow and tool design.
Available tools
23 tools, grouped by capability.
Releases & rollout
Tool | Description | Key inputs |
| Current releases/deployments per track |
|
| Upload an APK/AAB and assign it to a track (optional staged rollout) |
|
| Promote an existing version from one track to another |
|
| Change a staged-rollout fraction, or halt/complete the in-progress release |
|
| Batch-complete the in-progress staged rollout across multiple apps |
|
| Set release notes on the current release of a track (no redeploy) |
|
Store listing
Tool | Description | Key inputs |
| Store listing text (title, short/full description) for every locale |
|
| Update a store listing for one locale and commit |
|
| App-level details (default language, contact email/phone/website) |
|
| Upload a store-listing graphic (icon, screenshots, feature graphic, …) for a locale |
|
Reviews
Tool | Description | Key inputs |
| Recent user reviews (rating, text, app version, device) |
|
| Post a developer reply to a user review |
|
Monetization
Tool | Description | Key inputs |
| List managed in-app products (SKUs) |
|
| List subscription products |
|
| Update an existing managed IAP (status / default price) and commit |
|
| List refunded/revoked (voided) purchases |
|
| Refund a single order, optionally revoking the entitlement |
|
Testers
Tool | Description | Key inputs |
| Read (omit groups) or set the Google Groups of testers for a closed track |
|
Analytics & reports
Tool | Description | Key inputs |
| Distinct users per app version over N days (Reporting API) |
|
| Latest crash rate and ANR rate (Reporting API) |
|
| Install base per app version + monthly net growth, from the statistics GCS reports |
|
| Raw install/uninstall report rows for one month and dimension, from the statistics GCS reports |
|
Meta
Tool | Description | Key inputs |
| List the apps this service account can access (Reporting API) | — |
get_users_by_versionuses the Reporting API's vitals-scopeddistinctUsersmetric — a proxy for the active user base, ideal for the version-adoption split, not an exact install count (the Reporting API has no install-count metric; real install counts live in the statistics GCS reports, read byget_install_statsandget_install_reports).
get_install_reportsreadsstats/installs/installs_{package}_{YYYYMM}_{dimension}.csv(dimension∈overview|country|app_version, defaultoverview) from the reports bucket. These CSVs are UTF-16LE with a BOM; the server decodes and parses them. SetPLAY_REPORTS_BUCKET(Play Console → Download reports → Statistics → Copy Cloud Storage URI; thepubsite_prod_*value) and grant the service account Storage Object Viewer on it.
Setup
Google Cloud: create a project, enable Google Play Android Developer API and Google Play Developer Reporting API, create a service account, and download its JSON key.
Play Console → Users and permissions: invite the service-account email; grant it the apps and the "View app information / bulk reports" + "Releases" permissions.
Configure the MCP (
~/.claude.json):
{
"mcpServers": {
"play-store": {
"command": "npx",
"args": ["-y", "github:petropentsak/play-store-mcp"],
"env": {
"PLAY_SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/service-account-key.json",
"PLAY_DEFAULT_TRACK": "internal"
}
}
}
}PLAY_SERVICE_ACCOUNT_KEY (raw or base64 JSON) is accepted as an alternative to the path.
Build / release
dist/ is committed so npx github: works with no build step. The config is not pinned to a
tag — it tracks the default-branch HEAD, so every commit must be installable (build + commit dist/).
To ship: npm run build → commit (incl. dist/) → push HEAD to the default branch → clear
~/.npm/_npx if a stale tarball is cached → reconnect / cold-start the MCP client.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/petropentsak/play-store-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server