Skip to main content
Glama

google_update_details

Modify app details for Google Play Store listings including default language, contact email, phone number, and website URL.

Instructions

Update app details (default language, contact email/phone/website)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
packageNameYesAndroid package name
editIdYesEdit ID
defaultLanguageNoDefault language code in BCP 47 format (e.g. en-US)
contactWebsiteNoUser-visible website URL
contactEmailNoUser-visible support email
contactPhoneNoUser-visible support phone number

Implementation Reference

  • Definition and handler for the 'google_update_details' tool.
    const updateDetails: ToolDef = {
      name: 'google_update_details',
      description: 'Update app details (default language, contact email/phone/website)',
      schema: z.object({
        packageName: z.string().describe('Android package name'),
        editId: z.string().describe('Edit ID'),
        defaultLanguage: z.string().optional().describe('Default language code in BCP 47 format (e.g. en-US)'),
        contactWebsite: z.string().optional().describe('User-visible website URL'),
        contactEmail: z.string().optional().describe('User-visible support email'),
        contactPhone: z.string().optional().describe('User-visible support phone number'),
      }),
      handler: async (client, args) => {
        const { packageName, editId, ...details } = args;
        return client.updateDetails(packageName, editId, details);
      },
    };

Tool Definition Quality

Score is being calculated. Check back soon.

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