An MCP server that connects to Play Store Console and release new App versions from an MCP Client
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"play-store-mcp": {
"env": {
"PLAY_STORE_DEFAULT_TRACK": "internal",
"PLAY_STORE_SERVICE_ACCOUNT_KEY_PATH": "/path/to/service-account-key.json"
},
"args": [
"-jar",
"/path/to/play-store-mcp-all.jar"
],
"command": "java"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that enables interaction with Google Play Console to deploy and manage Android applications.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Play Store Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that enables interaction with Google Play Console to deploy and manage Android applications.
Although it's currently functional, this MCP server is under development. Please use with caution and thoroughly test in non-production environments first.
If you encounter any issues or have feature requests, please open an issue on GitHub. Your feedback is valuable for improving this project.
This MCP server provides tools to:
deploy_appDeploys a new version of an application to the Play Store.
Parameters:
packageName (string): App package name (e.g., com.example.myapp)track (string): Release track (internal, alpha, beta, production)apkPath (string): Path to APK or AAB fileversionCode (integer): Version code (must be higher than current)releaseNotes (string, optional): Release notesrolloutPercentage (number, optional): Rollout percentage (0.0 to 1.0, default: 1.0 for full rollout)promote_releasePromotes an existing version from one track to another.
Parameters:
packageName (string): App package namefromTrack (string): Source track (internal, alpha, beta)toTrack (string): Target track (alpha, beta, production)versionCode (integer): Version code to promoteget_releasesGets the current status of app releases and deployments for a specific package.
Parameters:
packageName (string): App package name (e.g., com.example.myapp)play-store-mcpService account for Play Store MCP operationsservice-account-key.jsonMore permissions may be required when new features are released.
Add the following configuration to your MCP configuration file:
{
"mcpServers": {
"play-store-mcp": {
"command": "java",
"args": [
"-jar",
"/path/to/play-store-mcp-all.jar"
],
"env": {
"PLAY_STORE_SERVICE_ACCOUNT_KEY_PATH": "/path/to/service-account-key.json",
"PLAY_STORE_DEFAULT_TRACK": "internal"
}
}
}
}
PLAY_STORE_SERVICE_ACCOUNT_KEY_PATH: Path to the service account JSON file (required)