npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@appeeky/google-play-store-cli

v0.1.2

Published

gps + gps-mcp — Google Play Store CLI and MCP server (Android Publisher API v3)

Readme

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 | | ------- | -------- | ---- | | @appeeky/google-play-store-cli | gps, gps-mcp | CLI + MCP server |

Docs: gps.appeeky.com · Repo: appeeky/google-play-store-cli

Table of contents

Install

npm install -g @appeeky/google-play-store-cli

This installs both binaries:

  • gps — CLI
  • gps-mcp — MCP server (stdio)
gps --help
gps-mcp --help

Also 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-cli

Quick start

1. Authenticate

  1. Create a Google Cloud service account and enable the Google Play Android Developer API.
  2. Invite the SA email in Play Console → Users and permissions.
  3. Download the JSON key (never commit it).
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service-account.json
gps whoami

Or:

gps --credentials /path/to/service-account.json whoami

Credential precedence: --credentialsGPS_CREDENTIALS / GOOGLE_PLAY_CREDENTIALSGOOGLE_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 list

Writes need --confirm:

gps --package com.example.app deploy \
  --file ./app-release.aab \
  --track internal \
  --confirm

Multi-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 list

Details: 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 --confirm

Reviews

gps --package com.example.app reviews list --json
gps --package com.example.app reviews reply REVIEW_ID "Thanks!" --confirm

Listings

gps --package com.example.app listings list
gps --package com.example.app listings update en-US --title "My App" --confirm

Monetization

gps --package com.example.app subscriptions list --json
gps --package com.example.app otp list
gps --package com.example.app iap list

Full 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.json

See docs/mcp/setup.mdx.

gps skills

Agent Skills for automating gps workflows including releases, listings, reviews, monetization, MCP, and troubleshooting.

gps install-skills

Or:

npx skills add ./skills --skill '*' -a cursor -a claude-code -g -y

Docs: docs/skills/overview.mdx.

Documentation

cd docs && npx mintlify dev

Development

git clone https://github.com/appeeky/google-play-store-cli.git
cd google-play-store-cli
pnpm install
pnpm build
pnpm test
pnpm typecheck

Contributing

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.