Skip to main content
Glama

google_list_reviews

Retrieve user reviews for Android apps from Google Play Console to monitor feedback and improve app quality.

Instructions

List user reviews for an app

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name

Implementation Reference

  • The handler function that executes the google_list_reviews tool.
    handler: async (client, args) => {
      return client.listReviews(args.packageName);
    },
  • The input validation schema for the google_list_reviews tool.
    schema: z.object({
      packageName: z.string().describe('Android package name'),
    }),
  • The complete definition and registration structure for the google_list_reviews tool.
    const listReviews: ToolDef = {
      name: 'google_list_reviews',
      description: 'List user reviews for an app',
      schema: z.object({
        packageName: z.string().describe('Android package name'),
      }),
      handler: async (client, args) => {
        return client.listReviews(args.packageName);
      },
    };
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/app-publish-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server