Skip to main content
Glama

google_commit_edit

Commit and publish pending changes in a Google Play Console edit session to finalize app updates.

Instructions

Commit all pending changes in an edit session. This publishes the changes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
editIdYesEdit ID from google_create_edit

Implementation Reference

  • The handler for the tool `google_commit_edit`. It calls `client.commitEdit` with the provided package name and edit ID.
    const commitEdit: ToolDef = {
      name: 'google_commit_edit',
      description: 'Commit all pending changes in an edit session. This publishes the changes.',
      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.commitEdit(args.packageName, args.editId);
        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