🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

playstore-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playstore-mcp

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

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

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:

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

Enable the Google Play Developer API

Grant Play Console Access

  • Go to Google Play ConsoleUsers and permissions
  • Click Invite new users
  • Enter the service account's client_email (found in the JSON key file, e.g. my-service-account@my-project.iam.gserviceaccount.com)
  • Under App permissions, add the apps you want the service account to access
  • Grant the necessary permissions (e.g. View app information and download bulk reports, Manage production releases, Reply to reviews)
  • 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.

CredentialWhere to find it
Service Account JSON KeyDownloaded 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 Code (CLI)
claude mcp add playstore \
  --transport stdio \
  --env GOOGLE_SERVICE_ACCOUNT_KEY_PATH=/absolute/path/to/service-account.json \
  -- npx -y playstore-mcp
Claude Desktop

Add to your claude_desktop_config.json:

OSPath
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

ToolDescription
get_app_detailsGet app details by package name
list_tracksList release tracks (production, beta, alpha, internal)
get_trackGet details of a specific release track
list_reviewsList user reviews for an app
reply_to_reviewReply to a user review
list_listingsList all store listings (all locales)
get_listingGet store listing for a specific locale
update_listingUpdate store listing for a locale
list_inapp_productsList managed in-app products
get_inapp_productGet details of a specific in-app product
list_subscriptionsList subscriptions for an app
get_subscriptionGet details of a specific subscription
list_testersList testers for a specific track
update_testersUpdate testers (Google Groups) for a track

License

MIT

Keywords

mcp

FAQs

Package last updated on 03 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts