google_get_subscription
Retrieve details of a specific subscription from Google Play Console by providing the Android package name and subscription product ID.
Instructions
Get details of a specific subscription
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| productId | Yes | Subscription product ID |
Implementation Reference
- src/google/tools.ts:584-586 (handler)Handler function for google_get_subscription that calls client.getSubscription(packageName, productId)
handler: async (client, args) => { return client.getSubscription(args.packageName, args.productId); }, - src/google/tools.ts:580-583 (schema)Zod schema for google_get_subscription: requires packageName and productId strings
schema: z.object({ packageName: z.string().describe('Android package name'), productId: z.string().describe('Subscription product ID'), }),