Skip to main content
Glama

google_delete_all_images

Remove all images of a given type (e.g., screenshots, feature graphic) for a specific language from your Google Play listing, useful for bulk cleanup or replacing store images.

Instructions

Delete all images of a specific type for a language

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
editIdYesEdit ID
languageYesLanguage code
imageTypeYesImage type

Implementation Reference

  • The ToolDef defining the 'google_delete_all_images' tool. The handler calls client.deleteAllImages(packageName, editId, language, imageType).
    const deleteAllImages: ToolDef = {
      name: 'google_delete_all_images',
      description: 'Delete all images of a specific type for a language',
      schema: z.object({
        packageName: z.string().describe('Android package name'),
        editId: z.string().describe('Edit ID'),
        language: z.string().describe('Language code'),
        imageType: z.string().describe('Image type'),
      }),
      handler: async (client, args) => {
        await client.deleteAllImages(args.packageName, args.editId, args.language, args.imageType);
        return { success: true };
      },
    };
  • Zod schema for 'google_delete_all_images' input validation: requires packageName, editId, language, and imageType (all strings).
    schema: z.object({
      packageName: z.string().describe('Android package name'),
      editId: z.string().describe('Edit ID'),
      language: z.string().describe('Language code'),
      imageType: z.string().describe('Image type'),
    }),
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It indicates a destructive action but does not disclose potential side effects, permissions required, reversibility, or rate limits. The behavioral context is minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence with no extraneous information. Every word is necessary to convey the core function.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 required parameters, no output schema, and no annotations, the description is insufficient. It lacks context about return values, scope of deletion, and operational implications.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description mentions 'imageType' and 'language', which map to schema fields, but adds no additional meaning beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Delete', the resource 'all images', and the constraints 'of a specific type for a language'. This distinguishes it from sibling tools like google_delete_image (single image) and google_delete_listing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives, when not to use it, or any prerequisites. The description is purely definitional.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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