google_get_iap
Retrieve details for a specific in-app product from Google Play Console using package name and SKU to manage pricing, availability, and configurations.
Instructions
Get details of a specific in-app product
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| sku | Yes | Product SKU |
Implementation Reference
- src/google/client.ts:252-255 (handler)The underlying client method that performs the API call to get in-app product details.
async getInAppProduct(packageName: string, sku: string) { const res = await this.publisher.inappproducts.get({ packageName, sku }); return res.data; } - src/google/tools.ts:477-479 (handler)The MCP tool handler that invokes the client method.
handler: async (client, args) => { return client.getInAppProduct(args.packageName, args.sku); }, - src/google/tools.ts:473-476 (schema)Input validation schema for the google_get_iap tool.
schema: z.object({ packageName: z.string().describe('Android package name'), sku: z.string().describe('Product SKU'), }), - src/google/tools.ts:623-623 (registration)Registration of the getInAppProduct tool definition.
listInAppProducts, getInAppProduct, createInAppProduct, updateInAppProduct, deleteInAppProduct,