Google Play Store CLI MCP
Provides tools for managing Google Play Store app releases, listings, reviews, and monetization via the Google Play Android Publisher API. Allows deploying builds, promoting tracks, replying to reviews, managing in-app products and subscriptions, and more.
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 Store CLI MCPDeploy my app to internal testing track"
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 Store CLI
Powered by Appeeky.
A scriptable CLI + MCP for the Google Play Android Publisher API v3.
Automate Android release workflows from your terminal, IDE, or CI — deploy builds, manage listings, reply to reviews, and operate monetization.
Package | Binaries | Role |
| CLI + MCP server |
Table of contents
Related MCP server: play-store-mcp
Install
npm install -g @appeeky/google-play-store-cliThis installs both binaries:
gps— CLIgps-mcp— MCP server (stdio)
gps --help
gps-mcp --helpAlso available with other package managers:
pnpm add -g @appeeky/google-play-store-cli
yarn global add @appeeky/google-play-store-cli
bun add -g @appeeky/google-play-store-cliQuick start
1. Authenticate
Create a Google Cloud service account and enable the Google Play Android Developer API.
Invite the SA email in Play Console → Users and permissions.
Download the JSON key (never commit it).
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
gps whoamiOr:
gps --credentials /path/to/service-account.json whoamiCredential precedence: --credentials → GPS_CREDENTIALS / GOOGLE_PLAY_CREDENTIALS → GOOGLE_APPLICATION_CREDENTIALS → ~/.config/gps/config.json.
2. First commands
gps --package com.example.app --json tracks list
gps --package com.example.app --json listings list
gps --package com.example.app --json reviews listWrites need --confirm:
gps --package com.example.app deploy \
--file ./app-release.aab \
--track internal \
--confirmMulti-account
One service-account key can access many apps (Play Console grants). Google Publisher API has no list_apps — register packages locally:
gps accounts add my-co --credentials /path/to/sa.json --default-package com.example.app --default
gps apps add com.example.app --account my-co --name "My App" --default
gps apps list
gps --account my-co tracks listDetails: docs/authentication-accounts.mdx.
Common workflows
Releases
gps --package com.example.app deploy --file ./app.aab --track internal --confirm
gps --package com.example.app tracks promote --from internal --to beta --confirm
gps --package com.example.app tracks rollout production --user-fraction 0.1 --confirm
gps --package com.example.app tracks halt production --confirmReviews
gps --package com.example.app reviews list --json
gps --package com.example.app reviews reply REVIEW_ID "Thanks!" --confirmListings
gps --package com.example.app listings list
gps --package com.example.app listings update en-US --title "My App" --confirmMonetization
gps --package com.example.app subscriptions list --json
gps --package com.example.app otp list
gps --package com.example.app iap listFull API surface
gps ops monetization
gps call gps_list_reviews '{"packageName":"com.example.app"}'MCP
{
"mcpServers": {
"google-play-store": {
"command": "gps-mcp",
"args": ["--credentials", "/path/to/service-account.json"]
}
}
}Read-only:
gps-mcp --read-only --credentials ./sa.jsonSee docs/mcp/setup.mdx.
gps skills
Agent Skills for automating gps workflows including releases, listings, reviews, monetization, MCP, and troubleshooting.
gps install-skillsOr:
npx skills add ./skills --skill '*' -a cursor -a claude-code -g -yDocs: docs/skills/overview.mdx.
SDK
The same Publisher client ships as a TypeScript SDK in this monorepo (packages/core, import @appeeky/google-play-store-core). It is bundled into the published CLI/MCP package and is not published separately on npm yet. See docs/sdk/overview.mdx.
Documentation
Site: gps.appeeky.com
Source:
docs/
cd docs && npx mintlify devDevelopment
git clone https://github.com/appeeky/google-play-store-cli.git
cd google-play-store-cli
pnpm install
pnpm build
pnpm test
pnpm typecheckContributing
Contributions are welcome. See CONTRIBUTING.md for setup, package layout, and testing notes.
License
MIT — see LICENSE.
This project is an independent tool for the Google Play Android Publisher API and is not affiliated with, endorsed by, or sponsored by Google LLC. Google Play and Android are trademarks of Google LLC.
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.
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/appeeky/google-play-console-cli'
If you have feedback or need assistance with the MCP directory API, please join our Discord server