Skip to main content
Glama

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
NameRequiredDescriptionDefault
packageNameYesAndroid package name
skuYesProduct SKU

Implementation Reference

  • 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;
    }
  • The MCP tool handler that invokes the client method.
    handler: async (client, args) => {
      return client.getInAppProduct(args.packageName, args.sku);
    },
  • 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'),
    }),
  • Registration of the getInAppProduct tool definition.
    listInAppProducts, getInAppProduct, createInAppProduct, updateInAppProduct, deleteInAppProduct,
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/app-publish-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server