MCP Google Play MCP Server

MCP server for Google Play Store command line tools

Local serverstdio

What is the MCP Google Play MCP server?

MCP Google Play becomes available to MCP clients through the mcp google play mcp server. MCP server for Google Play Store command line tools.

What MCP Google Play does

An MCP (Model Context Protocol) server that provides Google Play Store command line tools integration for AI assistants like Claude.

Key capabilities

  • App listing management
  • Release management
  • Store listing updates
  • Review responses
  • Statistics and reporting
  • Secure credential handling

Tools it exposes

Once connected, the assistant can call these 9 tools directly:

  • list_apps — List all apps in your Play Console
  • get_app_info — Get detailed information about an app
  • list_releases — List releases for an app
  • create_release — Create a new release
  • update_listing — Update store listing information
  • get_reviews — Get app reviews
  • reply_to_review — Reply to a user review
  • get_statistics — Get app statistics and metrics
  • Configuration — 1. Create a Google Cloud service account with Play Console API access 2. Download the service account JSON key file 3. Use one of these methods to provide the

Installing the mcp google play mcp server

The server is distributed via npm as @blocktopus/mcp-google-play, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

The server reads one environment variable: GOOGLE_APPLICATION_CREDENTIALS. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Cloud and DevOps servers put infrastructure on speaking terms with your assistant, so "why is this broken?" is answered from real state rather than a generic checklist. MCP Google Play sits in that group, and the shape of its toolset — list_apps, get_app_info, list_releases among others — tells you what it is really for. Worth comparing against the other cloud devops servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • With 9 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use MCP Google Play.
  • Maintained by BlocktopusLtd.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp google play mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
list_appsList all apps in your Play Console
get_app_infoGet detailed information about an app
list_releasesList releases for an app
create_releaseCreate a new release
update_listingUpdate store listing information
get_reviewsGet app reviews
reply_to_reviewReply to a user review
get_statisticsGet app statistics and metrics
Configuration1. Create a Google Cloud service account with Play Console API access 2. Download the service account JSON key file 3. Use one of these methods to provide the API key:

How to install the MCP Google Play MCP server

{
  "mcpServers": {
    "google-play": {
      "command": "npx",
      "args": [
        "@blocktopus/mcp-google-play",
        "--api-key",
        "/path/to/service-account-key.json"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GOOGLE_APPLICATION_CREDENTIALSConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP Google Play to list apps.
  • Use MCP Google Play to get app info.
  • Use MCP Google Play to list releases.

Frequently asked questions

It connects MCP Google Play to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (list_apps, get_app_info, list_releases, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Google Play directly.