Google Play Store Tools

Google Play Store search for apps, games, movies, books, and detailed product information

Overview

Google Play Store Tools gives AI agents access to the Google Play Store through a managed google play store api — the primary distribution platform for Android apps, games, movies, and books across over 3 billion active Android devices globally, delivering market intelligence without requiring a custom google play search api or developer-level Play Console access.

It acts as a standardized bridge between large language models and live Play Store data. Instead of relying on static Android market knowledge, models can retrieve current app listings, ratings, and full product details through a controlled MCP interface that functions as a complete google play developer api for AI-powered market research workflows.

By integrating Google Play Store Tools, developers enable AI agents to:

• Search the entire Play Store catalogue by keyword using search_store — returning app names, developer names, ratings, install count ranges, pricing, and category tags • Retrieve the complete listing for any specific Play Store item with get_product_details — including full description, content rating, permissions, last updated date, and developer contact information • Monitor app ratings and review trends with google play review api quality data for competitive intelligence and product feedback analysis • Analyse the Android app market for ASO research, market sizing, and google play store search api style discovery workflows

This MCP is essential for Android market intelligence tools, ASO research platforms, competitor benchmarking agents, app recommendation engines, and any AI pipeline that analyses the mobile app ecosystem using live google play store api data.

Highlights

Protocol
MCP v1.0
Security
OAuth 2.0
Access
Real-time
Tools
2 Tools

Standardized bridge for real-time model context.

Installation

Connect this server to your local or remote agent environment.

mcp_config.json
{
  "mcpServers": {
    "mcp360": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://connect.mcp360.ai/v1/google-play/mcp?token=YOUR_API_KEY"
      ]
    }
  }
}
Replace YOUR_API_KEY with your actual key from the dashboard.

Available Tools

Technical specifications for the 2 available protocol tools.

2 tools

get_product_details tool

Input Specification
{
  "type": "object",
  "required": [
    "store",
    "product_id"
  ],
  "properties": {
    "gl": {
      "type": "string",
      "description": "Country code (e.g., 'us', 'uk', 'jp')"
    },
    "hl": {
      "type": "string",
      "description": "Language code (e.g., 'en', 'es', 'ja')"
    },
    "num": {
      "type": "number",
      "description": "Number of reviews to retrieve (max 200)"
    },
    "store": {
      "enum": [
        "apps",
        "movies",
        "books",
        "audiobooks",
        "tv"
      ],
      "type": "string",
      "description": "Product store type"
    },
    "product_id": {
      "type": "string",
      "description": "Product ID (e.g., 'com.whatsapp' for apps)"
    },
    "next_page_token": {
      "type": "string",
      "description": "Token for reviews pagination"
    }
  },
  "additionalProperties": false
}
Output Response
{
  "type": "object",
  "required": [
    "search_parameters",
    "product"
  ],
  "properties": {
    "media": {
      "type": "object",
      "properties": {
        "video": {
          "type": "string"
        },
        "images": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "background_image": {
          "type": "string"
        }
      }
    },
    "product": {
      "type": "object",
      "properties": {
        "rank": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "offers": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "link": {
                "type": "string"
              },
              "text": {
                "type": "string"
              }
            }
          }
        },
        "rating": {
          "type": "number"
        },
        "authors": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "link": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "reviews": {
          "type": "number"
        },
        "snippet": {
          "type": "string"
        },
        "downloads": {
          "type": "string"
        },
        "thumbnail": {
          "type": "string"
        },
        "categories": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "link": {
                "type": "string"
              },
              "title": {
                "type": "string"
              }
            }
          }
        },
        "extensions": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "product_id": {
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "release_date": {
          "type": "string"
        },
        "content_rating": {
          "type": "object",
          "properties": {
            "category": {
              "type": "string"
            },
            "thumbnail": {
              "type": "string"
            }
          }
        },
        "developer_contact": {
          "type": "object",
          "properties": {
            "email": {
              "type": "string"
            },
            "website": {
              "type": "string"
            },
            "privacy_policy": {
              "type": "string"
            }
          }
        },
        "reviews_histogram": {
          "type": "object",
          "properties": {
            "1": {
              "type": "number"
            },
            "2": {
              "type": "number"
            },
            "3": {
              "type": "number"
            },
            "4": {
              "type": "number"
            },
            "5": {
              "type": "number"
            }
          }
        }
      }
    },
    "reviews": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "link": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "likes": {
            "type": "number"
          },
          "avatar": {
            "type": "string"
          },
          "rating": {
            "type": "number"
          },
          "iso_date": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "product_version": {
            "type": "string"
          }
        }
      }
    },
    "data_safety": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "link": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "subtitle": {
            "type": "string"
          },
          "thumbnail": {
            "type": "string"
          }
        }
      }
    },
    "similar_products": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "free": {
                  "type": "boolean"
                },
                "link": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "author": {
                  "type": "string"
                },
                "rating": {
                  "type": "number"
                },
                "thumbnail": {
                  "type": "string"
                },
                "product_id": {
                  "type": "string"
                }
              }
            }
          },
          "title": {
            "type": "string"
          },
          "see_more_link": {
            "type": "string"
          },
          "see_more_token": {
            "type": "string"
          }
        }
      }
    },
    "search_parameters": {
      "type": "object",
      "properties": {
        "gl": {
          "type": "string"
        },
        "hl": {
          "type": "string"
        },
        "num": {
          "type": "number"
        },
        "store": {
          "type": "string"
        },
        "engine": {
          "type": "string"
        },
        "product_id": {
          "type": "string"
        }
      }
    },
    "reviews_pagination": {
      "type": "object",
      "properties": {
        "next_page_token": {
          "type": "string"
        }
      }
    },
    "additional_information": {
      "type": "object",
      "properties": {
        "last_updated": {
          "type": "string"
        },
        "recent_updates": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}

Direct API Access

Production-ready REST endpoints for custom integrations.

POSTServer Metadata
/api/v1/google-play
curl "https://connect.mcp360.ai/api/v1/google-play" \
  -H "Authorization: Bearer YOUR_API_KEY"
POSTExecute Tool
/api/v1/google-play/{tool_name}
curl -X POST "https://connect.mcp360.ai/api/v1/google-play/get_product_details" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "store": "apps",
  "product_id": "string"
}'
Authentication

To authenticate, include your API key in the Authorization header using the Bearer scheme. Alternatively, you can use the X-API-KEY header.

Infrastructure

Unified MCP Gateway

One hub for 100+ production-ready tools with centralized management.

Unified API Key

Access 100+ MCP servers with a single authentication token.

Instant Testing

Test and debug any MCP server instantly in our integrated environment.

Centralized Billing

One monthly subscription for all your AI tool integrations and credits.

Scenarios

Standard Use Cases

Connect to the google play store api to retrieve app metadata, screenshots, descriptions, and category rankings for market research
Use the google play review api to monitor user feedback, track rating trends, and prioritize bug fixes based on aggregated review data
Leverage a google play search api integration to discover competitor apps, analyze keyword visibility, and benchmark store performance
Automate app store optimization workflows by pulling Google Play ranking data and identifying high-volume keywords with low competition
Build developer analytics dashboards that track install counts, rating distributions, and update history across Android app listings

Frequently Asked Questions

What is Google Play Store Tools?

Google Play Store Tools is an MCP server that provides structured access to google play store tools capabilities through a standardized protocol, enabling AI models to retrieve and process real-time data.

Which AI models are supported?

Any model that supports MCP protocol including Claude (via Claude Desktop), GPT-4, Gemini, and open-source LLMs through compatible frameworks.

How do I authenticate?

The server supports OAuth 2.0 authentication with API keys. You'll receive credentials upon registration which can be configured in your MCP client.

Is there rate limiting?

Yes, rate limits apply based on your subscription tier. Free tier includes generous limits for development, with higher limits available in paid plans.

Can I use this in production?

Absolutely. Google Play Store Tools is designed for production use with enterprise-grade reliability, security, and performance.

Deploy AI agent with Google Play Store Tools today.

Start building production-ready AI agent integrations in minutes with standardized protocol access.

Enterprise Ready
Secure OAuth
24/7 Support