Read-only access to App Store Connect and Google Play: apps, releases, and reviews.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A read-only MCP server for App Store Connect and Google Play. One set of tools over both stores, so you can ask "what's live, what's in review, and what are people complaining about?" once instead of twice.
Built for indie developers who ship to both stores and are tired of two consoles, two auth schemes, and two vocabularies for the same thing.
Nothing here writes. No metadata edits, no submissions, no review replies. Every
tool is annotated readOnlyHint, and the test suite fails if that ever stops being true.
No Apple key, no Google service account:
Demo mode serves fixtures for a fictional two-app developer β including a version stuck in review and a staged rollout at 20%, because those are the states worth looking at.
| Tool | What it does |
|---|---|
stores_health | Which stores are configured and whether their credentials work. |
list_apps | Every reachable app, both stores, one list. |
get_app | One app by App Store id, Play package name, or bundle id. |
get_releases | What's live, in review, or mid-rollout β one app or the whole portfolio. |
get_reviews | Recent reviews from both stores, merged and sorted. maxRating: 2 to triage complaints. |
appId is optional on get_releases and get_reviews. Leave it out and the tool
sweeps every app you have β that's the portfolio view.
The App Store has appStoreVersions with an appVersionState; Play has tracks holding
releases with a status and a rollout fraction. Both are normalised:
Normalised state | App Store | Google Play |
|---|---|---|
live | READY_FOR_DISTRIBUTION | completed |
in_review | IN_REVIEW, WAITING_FOR_REVIEW | β |
pending_developer_release | PENDING_DEVELOPER_RELEASE | β |
rejected | REJECTED, METADATA_REJECTED | β |
rolling_out | β | inProgress with userFraction < 1 |
halted | β | halted |
draft | PREPARE_FOR_SUBMISSION | draft |
Each store's own wording is preserved in rawState, so nothing is lost in translation.
Reviews get the same treatment, with one honest exception: the stores do not report the same thing about where a review came from, so they do not share a field.
| Field | App Store | Google Play |
|---|---|---|
territory | ISO country (DEU, USA) | β not exposed |
language | β not exposed | reviewer's language (pl, en) |
device | β not exposed | device model |
appVersion | β not exposed | version reviewed |
Collapsing a language into a country field would have made the unified shape look tidier and report something false, so each store fills only what it actually knows.
Listed in the MCP Registry as io.github.JohnBilousov/appstore-play-mcp, so clients that read the registry can find it on
their own.
Either store works on its own β configure one, both, or neither (fixtures).
In App Store Connect β Users and Access β Integrations β App Store Connect API,
create a key and download the .p8 (Apple lets you download it once).
The server signs its own ES256 JWT β no fastlane, no extra dependency. ASC_PRIVATE_KEY
takes the key inline instead, for CI.
Create a service account in Google Cloud, enable the Android Publisher API for its project, then grant it access in Play Console β Users and permissions.
PLAY_PACKAGES is not optional: the Play API has no endpoint that lists a developer's
apps, so the packages have to be declared. PLAY_SERVICE_ACCOUNT_JSON takes the JSON
inline instead, for CI.
Claude Code:
These are the stores' constraints, not the server's:
PLAY_PACKAGES.finally block. Nothing is ever committed, so your
app is not modified β but that is why a read-only server makes a POST.Two credentials, one interface. AppStoreClient and PlayClient both implement
StoreClient; a DemoStoreClient implements it a third time on fixtures. Tools never
branch on which store they are talking to.
One store failing doesn't sink the call. Reads fan out across stores and across apps, and
a failure on either axis is collected rather than thrown. If Play is down, App Store reviews
still come back β with the Play failure named in the text and listed in unavailable, so the
model can tell the user the answer is partial. An empty list and a broken credential must never
look the same; a test asserts they don't.
Errors carry the fix. A 403 from Play says the service account may lack access or
the Android Publisher API may be disabled for its project. A 404 says to call
list_apps. The model can usually recover without the user intervening.
Tokens are cached and refreshed early. ES256 for Apple (20 min), RS256 β OAuth2 for
Google (1 hour), both refreshed a minute before expiry so no call races the boundary. The Play
side also memoizes the in-flight exchange: listApps() opens an edit per package concurrently,
and without that, each concurrent caller would see no cached token yet and mint its own.
CI runs typecheck, lint, format:check, test, and build on every push and pull request.
Publishing uses npm's trusted publishing (OIDC) β
no NPM_TOKEN secret, nothing that can leak or expire. One-time setup on npmjs.com, under the
package's Settings β Trusted publishing β GitHub Actions: organization JohnBilousov, this
repository, workflow filename publish.yml.
To cut a release: bump the version in package.json, server.json, and VERSION in
src/server.ts together (a test asserts they can't drift), commit, push, then publish a GitHub
Release with a matching vX.Y.Z tag. That triggers
.github/workflows/publish.yml, which runs the test suite and
publishes to npm with provenance β the
package page shows a verified link back to this exact commit and workflow run, not just a name on
the registry.
Contributions welcome β especially from anyone who ships to both stores and has hit a limit worth documenting here.
MIT Β© Ivan Bilousov
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/app-store-google-play)<a href="https://allmcps.com/mcp/app-store-google-play"><img src="https://allmcps.com/api/badge/app-store-google-play?style=directory" alt="App Store & Google Play on AllMCPs" /></a>