Skip to main content
Glama

google_reply_to_review

Respond to user reviews on Google Play Console by submitting replies to specific app reviews using package name and review ID.

Instructions

Reply to a user review

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
reviewIdYesReview ID
replyTextYesReply text

Implementation Reference

  • The handler implementation for the google_reply_to_review tool, defined as a ToolDef object in src/google/tools.ts. It calls client.replyToReview to execute the reply logic.
    const replyToReview: ToolDef = {
      name: 'google_reply_to_review',
      description: 'Reply to a user review',
      schema: z.object({
        packageName: z.string().describe('Android package name'),
        reviewId: z.string().describe('Review ID'),
        replyText: z.string().describe('Reply text'),
      }),
      handler: async (client, args) => {
        return client.replyToReview(args.packageName, args.reviewId, args.replyText);
      },
    };
  • Registration of the google_reply_to_review tool within the exported googleTools array.
    // Reviews
    listReviews, getReview, replyToReview,
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