play-store-mcp
Provides tools for managing Android apps on Google Play, including app deployment, release management, review responses, subscription and in-app product management, and Android Vitals monitoring.
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-mcprespond to the latest 1-star review"
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 Server
An MCP (Model Context Protocol) server that connects to the Google Play Developer API. Deploy apps, manage releases, respond to reviews, and monitor app health โ all through your AI assistant.
๐ Full Documentation
โจ Features
๐ App Deployment โ Deploy APK/AAB files to any track (internal, alpha, beta, production)
โก Batch Operations โ Deploy to multiple tracks simultaneously
๐ Multi-Language Support โ Deploy with release notes in multiple languages
โ Input Validation โ Validate package names, tracks, and text before API calls
๐ Automatic Retries โ Built-in retry logic with exponential backoff for transient failures
๐ Store Listings โ Update app titles, descriptions, and videos for any language
๐ Release Management โ Promote releases between tracks, manage staged rollouts
๐ฅ Tester Management โ Add and manage testers for testing tracks
โญ Review Management โ Fetch and reply to user reviews
๐ Android Vitals โ Monitor crashes, ANRs, and app health metrics
๐ณ Subscription Management โ List subscriptions and check purchase status
๐ In-App Products โ List and manage in-app products
๐ฆ Expansion Files โ Manage APK expansion files for large apps
๐งพ Orders โ Retrieve detailed transaction information
๐ณ Docker Support โ Run as a container with health checks
๐ Per-Request Credentials โ Bring-your-own-credentials for multi-tenant deployments
๐ Secure โ Google Cloud service account authentication
๐ Quick Start
Prerequisites
Google Cloud Project with the Google Play Developer API enabled
Service Account with access to your Play Console
Python 3.11+,
uvx, or Docker installed
Installation
Using uvx (Recommended)
# Run directly without installation
uvx play-store-mcpUsing pip
pip install play-store-mcp
play-store-mcpUsing Docker
docker run -e GOOGLE_APPLICATION_CREDENTIALS=/creds/key.json \
-v /path/to/service-account.json:/creds/key.json:ro \
ghcr.io/lusky3/play-store-mcp:latestFrom source
git clone https://github.com/lusky3/play-store-mcp.git
cd play-store-mcp
pip install -e .
play-store-mcpConfiguration
Set the path to your service account key:
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.jsonRunning with HTTP Transport
For remote access or public deployments, run the server with streamable-http transport:
play-store-mcp --transport streamable-http --host 0.0.0.0 --port 8000The server exposes a /health endpoint for monitoring.
Per-Request Credentials (Recommended for Public Instances)
For public deployments where users bring their own credentials, configure your MCP client to pass credentials in headers:
{
"mcpServers": {
"play-store": {
"url": "https://your-server.com/mcp",
"transport": "http",
"headers": {
"X-Google-Credentials-Base64": "YOUR_BASE64_ENCODED_CREDENTIALS"
}
}
}
}To get your base64-encoded credentials:
base64 -w 0 < service-account.jsonPer-request credentials are isolated โ each request uses only the credentials provided in its headers. No credentials are stored server-side or shared between requests.
Server-Side Credentials (For Private/Trusted Deployments)
For private deployments, set credentials via environment variable at server startup:
export GOOGLE_PLAY_STORE_CREDENTIALS='{"type":"service_account",...}'
# or
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
play-store-mcp --transport streamable-http --host 0.0.0.0 --port 8000๐ง MCP Client Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"play-store": {
"command": "uvx",
"args": ["play-store-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
}
}
}
}Kiro
Add to .kiro/settings/mcp.json:
{
"mcpServers": {
"play-store": {
"command": "uvx",
"args": ["play-store-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
}
}
}
}Gemini CLI / Other MCP Clients
{
"mcpServers": {
"play-store": {
"command": "uvx",
"args": ["play-store-mcp"],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "/path/to/service-account.json"
}
}
}
}๐ ๏ธ Available Tools
Publishing Tools
Tool | Description |
| Deploy an APK/AAB to a track with optional staged rollout and single-language release notes |
| Deploy an APK/AAB with multi-language release notes |
| Promote a release from one track to another |
| Get release status for all tracks |
| Halt a staged rollout |
| Update rollout percentage for a staged release |
| Get app metadata (title, description, etc.) |
Store Listings Tools
Tool | Description |
| Get store listing for a specific language |
| Update store listing (title, descriptions, video) |
| List all store listings for all languages |
Review Tools
Tool | Description |
| Fetch recent reviews with optional filters |
| Reply to a user review |
Subscription Tools
Tool | Description |
| List subscription products for an app |
| Check subscription purchase status |
| List voided purchases |
In-App Products Tools
Tool | Description |
| List all in-app products for an app |
| Get details of a specific in-app product |
Testers Management Tools
Tool | Description |
| Get testers for a specific testing track |
| Update testers for a testing track |
Orders Tools
Tool | Description |
| Get detailed order/transaction information |
Expansion Files Tools
Tool | Description |
| Get APK expansion file information |
Validation Tools
Tool | Description |
| Validate package name format |
| Validate track name |
| Validate store listing text lengths |
Batch Operations Tools
Tool | Description |
| Deploy to multiple tracks simultaneously |
Vitals Tools
Tool | Description |
| Get Android Vitals overview (crashes, ANRs) |
| Get specific vitals metrics |
๐ Google Cloud Setup
1. Create a Service Account
Go to Google Cloud Console
Create a new project or select an existing one
Enable the Google Play Developer API
Go to IAM & Admin > Service Accounts
Create a new service account
Download the JSON key file
2. Grant Play Console Access
Go to Google Play Console
Navigate to Users and permissions
Click Invite new users
Enter the service account email (from the JSON file)
Grant the following permissions:
Release apps to testing tracks (for internal/alpha/beta)
Release apps to production (for production releases)
Reply to reviews (for review management)
View app information and download bulk reports (for vitals)
๐ Environment Variables
Variable | Description | Required |
| Path to service account JSON key | Yes (or use per-request credentials) |
| Inline JSON credentials string | Alternative to file path |
| Log level (DEBUG, INFO, WARNING, ERROR) | No (default: INFO) |
๐งช Development
Setup
git clone https://github.com/lusky3/play-store-mcp.git
cd play-store-mcp
uv sync --devRunning Tests
uv run pytest -v --cov=src/play_store_mcpLinting
ruff check src/ tests/
ruff format src/ tests/Type Checking
mypy src/๐ Troubleshooting
Error: "Service account key not found"
Ensure GOOGLE_APPLICATION_CREDENTIALS points to a valid JSON file:
ls -la $GOOGLE_APPLICATION_CREDENTIALSError: "The caller does not have permission"
Verify the service account has been granted access in Play Console with the required permissions.
Error: "Package name not found"
Ensure the app exists in Play Console and the service account has access to it.
๐ License
MIT License โ see LICENSE for details.
๐ Acknowledgments
Inspired by antoniolg/play-store-mcp (Kotlin)
Built with the MCP Python SDK
Uses the Google Play Developer API
๐ค AI Usage Disclaimer
Portions of this codebase were generated with the assistance of Large Language Models (LLMs). All AI-generated code has been reviewed and tested to ensure quality and correctness.
Maintenance
Latest Blog Posts
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/lusky3/play-store-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server