Skip to main content
Glama

google_validate_edit

Validate Google Play edit sessions to check for errors before committing changes to your app listing.

Instructions

Validate an edit session without committing. Useful to check for errors before commit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
editIdYesEdit ID from google_create_edit

Implementation Reference

  • The definition and handler implementation for the 'google_validate_edit' tool.
    const validateEdit: ToolDef = {
      name: 'google_validate_edit',
      description: 'Validate an edit session without committing. Useful to check for errors before commit.',
      schema: z.object({
        packageName: z.string().describe('Android package name'),
        editId: z.string().describe('Edit ID from google_create_edit'),
      }),
      handler: async (client, args) => {
        await client.validateEdit(args.packageName, args.editId);
        return { success: true, note: 'Edit is valid and ready to commit.' };
      },
    };
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