google-play-analytics-mcp
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., "@google-play-analytics-mcpShow store acquisitions by traffic source for the past month."
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.
google-play-analytics-mcp
An MCP server that exposes Google Play Console analytics to AI agents — store-listing acquisitions by traffic source (Explore / Search / Ads & referrals), installs & uninstalls, ratings, crashes, subscriptions and reviews.
It reads the bulk CSV reports that Google Play Console automatically exports to
your developer Cloud Storage bucket (pubsite_prod_rev_*), using a Google Cloud
service account (fully non-interactive — no browser login, no token refresh
dance). Reports are monthly files of daily rows; the server discovers, downloads,
decodes, parses and aggregates them behind a small set of tools.
Play Console publishes these reports with a lag of ~1–2 days, so the freshest data is usually yesterday or the day before.
Why this exists
The Play Console UI shows acquisition data (how many people found your app by browsing vs searching the Play Store, and how well your store listing converts visitors to installers), but there's no convenient API for an agent to read it. The underlying data, however, is exported as CSV to a Cloud Storage bucket. This server turns that bucket into typed, queryable tools — the Android counterpart to Apple's "App Store Browse vs Search" source-type analytics.
Related MCP server: play-store-mcp
Tools
Tool | What it returns |
| Verifies auth + bucket connectivity; lists top-level report prefixes |
| Configured aliases + packages actually present in the bucket |
| Every report family, its dimensions and description |
| Store acquisitions split by Google Play Explore / Search / Ads & referrals, with share-of-total % |
| Store acquisitions by country |
| Store-listing visitors, acquisitions & visitor→install conversion rate by traffic source or country (current) |
| Google Play search terms with visitors, acquisitions & CVR (low-volume terms k-anonymized into 'Other') |
| UTM source / campaign performance (Ads & referrals) with visitors, acquisitions & CVR (low-volume values k-anonymized) |
| Legacy visitors/CVR + retention (historical: ≤2021-06 — use |
| Users who purchased within 7 days of install, by channel/country (historical: ≤2021-06) |
| Installs / uninstalls / active devices, daily or by dimension |
| Average rating over time or by dimension |
| Crashes & ANRs, daily or by dimension |
| New / cancelled / active subscriptions by country |
| Individual user reviews (rating + text) |
| Escape hatch — raw parsed rows for any family/dimension |
Common parameters: package (an alias or a full package name), start_date /
end_date (ISO YYYY-MM-DD, default = last 30 days), and per-tool dimension,
daily, top.
Report families & data coverage
Family | Bucket prefix | Current data? | Dimensions |
|
| ✅ live |
|
|
| ✅ live |
|
|
| ✅ live |
|
|
| ✅ live | same as installs |
|
| ✅ live |
|
|
| ✅ live |
|
|
| ✅ live | — |
|
| ⚠️ ≤ 2021-06 |
|
|
| ⚠️ ≤ 2021-06 |
|
Google discontinued the
retained_installersandbuyers_7dbulk exports after June 2021 (andratings_v2was a short-lived 2022–2023 schema). Their store-listing conversion rate was replaced by the currentstore_conversionfamily (visitors + CVR); acquisitions live instore_performance. The historical families remain queryable for backfill.
Prerequisites
A Google Play Console account with reports being exported to a Cloud Storage bucket (this is on by default; the bucket is
pubsite_prod_rev_<number>).A Google Cloud service account with read access to that bucket, plus its JSON key. Two ways to grant access:
Play Console link (recommended): Play Console → Users and permissions → invite the service-account email → grant View app information and download bulk reports; or
Bucket IAM: grant the service account
roles/storage.objectVieweron thepubsite_prod_rev_*bucket in the Google Cloud console.
Python 3.11+.
Install
git clone git@github.com:desunit/google-play-analytics-mcp.git
cd google-play-analytics-mcp
python3 -m venv .venv
./.venv/bin/pip install -r requirements.txtConfigure
The server is configured entirely through environment variables (no secrets in the repo):
Variable | Required | Meaning |
| yes* | Path to the service-account key JSON |
| yes | Reports bucket, e.g. |
| no | JSON object of |
| no | Download cache dir (default |
* If GOOGLE_PLAY_SA_JSON is unset, the server also looks for
google-play.json in ~/.config/google-play-analytics-mcp/ or next to
server.py. Never commit the key — it's gitignored.
Finding your bucket name: Play Console → Download reports → open any report
category → Copy Cloud Storage URI. The bucket is the part between gs:// and the
first /.
App aliases (optional): copy apps.example.json → apps.json (gitignored) to
map short names like my-app to package names, or set GOOGLE_PLAY_APP_ALIASES.
Full package names always work without aliases.
Register with your MCP client
Copy .mcp.json.example and fill in absolute paths, or add to your client config:
{
"mcpServers": {
"google-play-analytics": {
"command": "/abs/path/google-play-analytics-mcp/.venv/bin/python",
"args": ["/abs/path/google-play-analytics-mcp/server.py"],
"env": {
"GOOGLE_PLAY_SA_JSON": "/abs/path/service-account.json",
"GOOGLE_PLAY_REPORTS_BUCKET": "pubsite_prod_rev_XXXXXXXXXXXXXXXX"
}
}
}
}For Claude Code, the equivalent one-liner:
claude mcp add google-play-analytics \
-e GOOGLE_PLAY_SA_JSON=/abs/path/service-account.json \
-e GOOGLE_PLAY_REPORTS_BUCKET=pubsite_prod_rev_XXXXXXXXXXXXXXXX \
-- /abs/path/.venv/bin/python /abs/path/server.pyVerify
export GOOGLE_PLAY_SA_JSON=/abs/path/service-account.json
export GOOGLE_PLAY_REPORTS_BUCKET=pubsite_prod_rev_XXXXXXXXXXXXXXXX
./.venv/bin/python -c "import server, json; print(json.dumps(server.health_check(), indent=2))"A healthy response lists your bucket's top-level prefixes
(acquisition/, stats/, financial-stats/, reviews/, …).
Example questions it answers
"What share of my Play Store installs come from browsing (Explore) vs Search?" →
get_acquisitions_by_traffic_source"Which countries drive the most store acquisitions this month?" →
get_acquisitions_by_country"Which Google Play search terms bring visitors, and which convert best?" →
get_search_terms(branded terms typically convert far higher than generic ones)"Which UTM campaigns and sources drive store installs?" →
get_utm_performance(e.g.<source> / <campaign>)"What's my visitor→install conversion rate by country?" →
get_store_conversion(dimension="country")"How do installs break down by language?" →
get_installs(dimension="language")"What's my daily install and uninstall trend?" →
get_installs(daily=True)"How is my rating trending?" →
get_ratings"Which app versions crash most?" →
get_crashes(dimension="app_version")
How it works
service account key ──► google-auth ──► short-lived Storage token
│
GCS JSON API: list + download objects under pubsite_prod_rev_*
│
BOM-aware decode (UTF-16 / UTF-8) ──► CSV parse ──► date-filter ──► aggregateDownloaded report files are cached under GOOGLE_PLAY_CACHE_DIR so repeat queries
don't re-fetch. Object listings are cached per process.
Security
No credentials are stored in this repository. The service-account key, the bucket name and any app aliases are all supplied at runtime via env vars or gitignored local files (
google-play.json,apps.json).The service account only needs read-only Storage scope (
devstorage.read_only). This server never writes to your bucket or Play Console.Downloaded reports (which contain your business data) are cached outside the repo tree by default (
~/.cache/...).
Author
Built by Songtive — @desunit on X.
License
MIT © Songtive
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.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn MCP server integrating Google Analytics 4, Search Console, and Indexing API, enabling AI agents to run reports, inspect URLs, manage properties, and request indexing.Last updated1679MIT
- AlicenseAqualityAmaintenanceAn MCP server that connects to the Google Play Developer API to deploy apps, manage releases, respond to reviews, and monitor app health through an AI assistant.Last updated2712MIT
- FlicenseAqualityDmaintenanceAn MCP server that provides Google Analytics and Search Console data as tools for AI assistants, enabling natural language queries for web analytics, SEO performance, and site insights.Last updated13
- AlicenseAqualityCmaintenanceAn MCP server that gives AI assistants structured access to App Store Connect data. Built for ASO analysis, download tracking, and performance monitoring.Last updated7231MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
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/desunit/google-play-analytics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server