appstore-play-mcp
Provides read-only tools for App Store Connect, letting you list apps, check release states (live, in review, rejected, pending release), and fetch recent App Store reviews.
Provides read-only tools for Google Play, letting you list apps, inspect production/beta release tracks and rollout status, and fetch recent Play Store reviews.
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., "@appstore-play-mcpWhich of my apps have a release that isn't live yet?"
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.
appstore-play-mcp
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.
> Which of my apps have a release that isn't live yet?
Pocket Herbarium (App Store)
app-store: 2.1.0 (214) — in review
Pocket Herbarium (Google Play)
production: 2.0.3 (208) — rolling out at 20%
beta: 2.1.0 (214) — liveBuilt 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.
Try it in 30 seconds
No Apple key, no Google service account:
npx -y appstore-play-mcp --demoDemo 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.
npx @modelcontextprotocol/inspector npx -y appstore-play-mcp --demoTools
Tool | What it does |
| Which stores are configured and whether their credentials work. |
| Every reachable app, both stores, one list. |
| One app by App Store id, Play package name, or bundle id. |
| What's live, in review, or mid-rollout — one app or the whole portfolio. |
| Recent reviews from both stores, merged and sorted. |
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.
One vocabulary for two stores
The App Store has appStoreVersions with an appVersionState; Play has tracks holding
releases with a status and a rollout fraction. Both are normalised:
Normalised | App Store | Google Play |
|
|
|
|
| — |
|
| — |
|
| — |
| — |
|
| — |
|
|
|
|
Each store's own wording is preserved in rawState, so nothing is lost in translation.
Setup
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).
export ASC_KEY_ID=XXXXXXXXXX
export ASC_ISSUER_ID=00000000-0000-0000-0000-000000000000
export ASC_KEY_PATH=/path/to/AuthKey_XXXXXXXXXX.p8The 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.
export PLAY_SERVICE_ACCOUNT_PATH=/path/to/service-account.json
export PLAY_PACKAGES=com.example.app,com.example.otherPLAY_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.
{
"mcpServers": {
"stores": {
"command": "npx",
"args": ["-y", "appstore-play-mcp"],
"env": {
"ASC_KEY_ID": "XXXXXXXXXX",
"ASC_ISSUER_ID": "00000000-0000-0000-0000-000000000000",
"ASC_KEY_PATH": "/path/to/AuthKey_XXXXXXXXXX.p8",
"PLAY_SERVICE_ACCOUNT_PATH": "/path/to/service-account.json",
"PLAY_PACKAGES": "com.example.app"
}
}
}
}Claude Code:
claude mcp add stores -- npx -y appstore-play-mcpPlatform limits worth knowing
These are the stores' constraints, not the server's:
Play cannot list your apps. Hence
PLAY_PACKAGES.Play reviews go back about a week, and only exist for apps that have reviews.
Play track data is only readable inside an "edit." Every read here opens a transient edit and deletes it in a
finallyblock. Nothing is ever committed, so your app is not modified — but that is why a read-only server makes a POST.App Store reviews are per-territory and can lag the store page by a few hours.
Design notes
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 with Promise.allSettled. If
Play is down, App Store reviews still come back, with a note explaining what is missing.
An empty list and a broken credential should never look the same.
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.
Development
git clone https://github.com/JohnBilousov/appstore-play-mcp && cd appstore-play-mcp
npm install
npm run build
npm test # tool surface, state normalisation, and portfolio sweeps over a real MCP transport
npm run inspectsrc/
index.ts CLI entry, stdio transport
config.ts env → Config; either store optional, fixtures as the floor
server.ts tools + the registry that fans reads across stores
schemas.ts zod input and output shapes
format.ts human-readable summaries next to structuredContent
stores/
types.ts shared vocabulary + state normalisation
appstore.ts App Store Connect (ES256 JWT)
play.ts Google Play (service account → OAuth2)
demo.ts fixturesRoadmap
Sales and download reports from App Store Connect (needs a vendor number)
Crash and ANR vitals from the Play Developer Reporting API
TestFlight builds and tester groups
Streamable HTTP transport alongside stdio
Publish to the MCP registry
Contributions welcome — especially from anyone who ships to both stores and has hit a limit worth documenting here.
License
MIT © Ivan Bilousov
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 Connectors
Remote MCP connector for App Store + Google Play data via StoreBridge API. No auth required.
Live App Store & Google Play data for AI agents: app discovery, ASO keywords, reviews.
Read-only access to your VortexIQ store data: audits, KPIs, alerts, Brand DNA, reports, Ask VIQ.
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/JohnBilousov/appstore-play-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server