google_get_listing
Retrieve Google Play store listing details for a specific language to manage app metadata, descriptions, and localization content.
Instructions
Get store listing for a specific language
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID | |
| language | Yes | Language code (e.g. ko-KR, en-US, ja-JP) |
Implementation Reference
- src/google/tools.ts:115-126 (handler)Handler and schema definition for the google_get_listing tool. It utilizes the google client to fetch a specific store listing.
const getListing: ToolDef = { name: 'google_get_listing', description: 'Get store listing for a specific language', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), language: z.string().describe('Language code (e.g. ko-KR, en-US, ja-JP)'), }), handler: async (client, args) => { return client.getListing(args.packageName, args.editId, args.language); }, };