google_get_country_availability
Check which countries can access your Android app on Google Play by specifying package name, edit ID, and track to verify distribution availability.
Instructions
Get country availability for a specific track
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID | |
| track | Yes | Track name (e.g. production, beta, alpha, internal) |
Implementation Reference
- src/google/tools.ts:171-173 (handler)The handler for google_get_country_availability calls the client's getCountryAvailability method.
handler: async (client, args) => { return client.getCountryAvailability(args.packageName, args.editId, args.track); }, - src/google/tools.ts:166-170 (schema)The Zod schema for input validation of the tool.
schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), track: z.string().describe('Track name (e.g. production, beta, alpha, internal)'), }), - src/google/tools.ts:612-613 (registration)Registration of the getCountryAvailability tool in the googleTools array.
// Country availability & Testers getCountryAvailability, getTesters, updateTesters,