Skip to main content
Glama

google_delete_listing

Remove Google Play store listings for specific languages to manage app content across regions.

Instructions

Delete a store listing for a specific language

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
editIdYesEdit ID
languageYesLanguage code to delete (e.g. ko-KR)

Implementation Reference

  • The definition and handler implementation for the "google_delete_listing" tool.
    const deleteListing: ToolDef = {
      name: 'google_delete_listing',
      description: 'Delete a 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 to delete (e.g. ko-KR)'),
      }),
      handler: async (client, args) => {
        await client.deleteListing(args.packageName, args.editId, args.language);
        return { success: true };
      },
    };
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