google_get_review
Retrieve detailed information about a specific Google Play Store review using package name and review ID to analyze user feedback.
Instructions
Get a specific review with details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| reviewId | Yes | Review ID |
Implementation Reference
- src/google/tools.ts:430-440 (handler)The definition and handler for 'google_get_review', which delegates the request to the GoogleClient.getReview method.
const getReview: ToolDef = { name: 'google_get_review', description: 'Get a specific review with details', schema: z.object({ packageName: z.string().describe('Android package name'), reviewId: z.string().describe('Review ID'), }), handler: async (client, args) => { return client.getReview(args.packageName, args.reviewId); }, };