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

playstore-mcp

v1.1.1

Published

MCP server for Google Play Store — manage apps, releases, reviews, listings and more

Downloads

118

Readme

Play Store MCP Server

An MCP (Model Context Protocol) server that wraps Google's Android Publisher API, giving AI assistants the ability to manage Play Store apps, releases, reviews, listings, and more — right from your IDE.

Getting Your API Credentials

You need a Google Cloud service account with Play Console access. Here's how to set it up:

  1. Go to Google Cloud Console → IAM & Admin → Service Accounts
  2. Select your project (or create one)
  3. Click Create Service Account
  4. Give it a name (e.g. "MCP Server") and click Create and Continue
  5. Skip the optional roles step — click Done
  6. Click on the newly created service account, go to the Keys tab
  7. Click Add Key → Create new key → JSON and download the file
  8. Save the JSON key file somewhere secure (e.g. ~/.google/play-service-account.json)

Enable the Google Play Developer API

  1. Go to Google Cloud Console → Google Play Android Developer API
  2. Make sure your project is selected, then click Enable

Grant Play Console Access

  1. Go to Google Play ConsoleUsers and permissions
  2. Click Invite new users
  3. Enter the service account's client_email (found in the JSON key file, e.g. [email protected])
  4. Under App permissions, add the apps you want the service account to access
  5. Grant the necessary permissions (e.g. View app information and download bulk reports, Manage production releases, Reply to reviews)
  6. Click Invite user

Important: You need account owner or admin permissions in the Play Console to invite new users. If you don't have either role, ask someone who does to complete this step.

| Credential | Where to find it | |---|---| | Service Account JSON Key | Downloaded in step 7 — contains client_email, private_key, and project_id |

Note: The JSON key file can only be downloaded once when created. If lost, generate a new key from the Keys tab.

Setup

Claude

claude mcp add playstore \
  --transport stdio \
  --env GOOGLE_SERVICE_ACCOUNT_KEY_PATH=/absolute/path/to/service-account.json \
  -- npx -y playstore-mcp

Add to your claude_desktop_config.json:

| OS | Path | |----|------| | macOS | ~/Library/Application Support/Claude/claude_desktop_config.json | | Windows | %APPDATA%\Claude\claude_desktop_config.json |

{
  "mcpServers": {
    "playstore": {
      "command": "npx",
      "args": ["-y", "playstore-mcp"],
      "env": {
        "GOOGLE_SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/service-account.json"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json for global):

{
  "mcpServers": {
    "playstore": {
      "command": "npx",
      "args": ["-y", "playstore-mcp"],
      "env": {
        "GOOGLE_SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/service-account.json"
      }
    }
  }
}

Verify under Cursor Settings → MCP after restarting.

Antigravity

Add to ~/.gemini/antigravity/mcp_config.json (or via Agent pane → MCP Servers → Manage MCP Servers → View raw config):

{
  "mcpServers": {
    "playstore": {
      "command": "npx",
      "args": ["-y", "playstore-mcp"],
      "env": {
        "GOOGLE_SERVICE_ACCOUNT_KEY_PATH": "/absolute/path/to/service-account.json"
      }
    }
  }
}

Tip: Run npx -y playstore-mcp once in your terminal first so the package is cached — Antigravity's first-run timeout can otherwise cause the server to fail to start.

Available Tools

| Tool | Description | |------|-------------| | get_app_details | Get app details by package name | | list_tracks | List release tracks (production, beta, alpha, internal) | | get_track | Get details of a specific release track | | list_reviews | List user reviews for an app | | reply_to_review | Reply to a user review | | list_listings | List all store listings (all locales) | | get_listing | Get store listing for a specific locale | | update_listing | Update store listing for a locale | | list_inapp_products | List managed in-app products | | get_inapp_product | Get details of a specific in-app product | | list_subscriptions | List subscriptions for an app | | get_subscription | Get details of a specific subscription | | list_testers | List testers for a specific track | | update_testers | Update testers (Google Groups) for a track |

License

MIT