google_create_edit
Create an edit session to modify Google Play listings, required before updating app details, screenshots, or descriptions.
Instructions
Create a new edit session. Required before making any changes to a Google Play listing.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name (e.g. com.example.app) |
Implementation Reference
- src/google/tools.ts:15-24 (handler)The handler implementation and definition for the 'google_create_edit' tool, which creates a new edit session for a Google Play app.
const createEdit: ToolDef = { name: 'google_create_edit', description: 'Create a new edit session. Required before making any changes to a Google Play listing.', schema: z.object({ packageName: z.string().describe('Android package name (e.g. com.example.app)'), }), handler: async (client, args) => { const editId = await client.createEdit(args.packageName); return { editId, note: 'Use this editId for subsequent operations, then commit when done.' }; },