google_delete_iap
Remove in-app products from Google Play Console by specifying package name and SKU to manage your app's digital offerings.
Instructions
Delete an in-app product
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| sku | Yes | Product SKU to delete |
Implementation Reference
- src/google/tools.ts:556-559 (handler)The handler function for google_delete_iap that calls the client's deleteInAppProduct method.
handler: async (client, args) => { await client.deleteInAppProduct(args.packageName, args.sku); return { success: true }; }, - src/google/tools.ts:552-555 (schema)The Zod schema definition for the arguments of the google_delete_iap tool.
schema: z.object({ packageName: z.string().describe('Android package name'), sku: z.string().describe('Product SKU to delete'), }), - src/google/tools.ts:549-550 (registration)The definition of the google_delete_iap tool object.
const deleteInAppProduct: ToolDef = { name: 'google_delete_iap',