google_list_listings
Retrieve all store listings across languages for an Android app on Google Play. Use this tool to manage app metadata and content in the Google Play Console.
Instructions
List all store listings (all languages) for an app
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID |
Implementation Reference
- src/google/tools.ts:110-112 (handler)The handler function for the 'google_list_listings' tool, which delegates to the client's listListings method.
handler: async (client, args) => { return client.listListings(args.packageName, args.editId); }, - src/google/tools.ts:106-109 (schema)The Zod schema defining the input parameters for the 'google_list_listings' tool.
schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), }), - src/google/tools.ts:103-113 (registration)The definition and registration structure for the 'google_list_listings' tool.
const listListings: ToolDef = { name: 'google_list_listings', description: 'List all store listings (all languages) for an app', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), }), handler: async (client, args) => { return client.listListings(args.packageName, args.editId); }, };