google_get_details
Retrieve app details including default language and contact information from Google Play Console using package name and edit ID.
Instructions
Get app details (default language, contact email/phone/website)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Android package name | |
| editId | Yes | Edit ID |
Implementation Reference
- src/google/tools.ts:70-80 (handler)The handler definition for the tool 'google_get_details', including its schema and implementation which delegates to the GoogleClient.
const getDetails: ToolDef = { name: 'google_get_details', description: 'Get app details (default language, contact email/phone/website)', schema: z.object({ packageName: z.string().describe('Android package name'), editId: z.string().describe('Edit ID'), }), handler: async (client, args) => { return client.getDetails(args.packageName, args.editId); }, };