google_list_images
Retrieve uploaded images for Android apps on Google Play Console to manage visual assets like screenshots, icons, and graphics for specific app listings.
Instructions
List uploaded images of a specific type
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID | |
| language | Yes | Language code | |
| imageType | Yes | Image type |
Implementation Reference
- src/google/tools.ts:208-223 (handler)The definition and handler implementation for the google_list_images tool.
const listImages: ToolDef = { name: 'google_list_images', description: 'List uploaded images of a specific type', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), language: z.string().describe('Language code'), imageType: z.enum([ 'featureGraphic', 'icon', 'phoneScreenshots', 'sevenInchScreenshots', 'tenInchScreenshots', 'tvBanner', 'tvScreenshots', 'wearScreenshots', ]).describe('Image type'), }), handler: async (client, args) => { return client.listImages(args.packageName, args.editId, args.language, args.imageType); }, };