google_list_subscriptions
Retrieve all subscriptions associated with an Android app using its package name to manage in-app purchase offerings.
Instructions
List all subscriptions for an app
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name |
Implementation Reference
- src/google/tools.ts:566-574 (handler)Implementation of the 'google_list_subscriptions' tool handler and schema.
const listSubscriptions: ToolDef = { name: 'google_list_subscriptions', description: 'List all subscriptions for an app', schema: z.object({ packageName: z.string().describe('Android package name'), }), handler: async (client, args) => { return client.listSubscriptions(args.packageName); },