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
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| reviewId | Yes | Review ID | |
| replyText | Yes | Reply text |
Implementation Reference
- src/google/tools.ts:442-453 (handler)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); }, }; - src/google/tools.ts:620-621 (registration)Registration of the google_reply_to_review tool within the exported googleTools array.
// Reviews listReviews, getReview, replyToReview,