Skip to main content
Glama

apple_update_app_info_localization

Update localized app metadata including name, subtitle, and privacy policy URL for a specific locale. Modify app store listing details per region using the localization ID.

Instructions

Update app name, subtitle, or privacy policy URL for a locale

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localizationIdYesAppInfo Localization ID
nameNoApp name
subtitleNoApp subtitle
privacyPolicyUrlNo
privacyPolicyTextNo

Implementation Reference

  • The handler function that executes the 'apple_update_app_info_localization' tool logic. It PATCHes the appInfoLocalization with the provided attributes (name, subtitle, privacyPolicyUrl, privacyPolicyText).
      handler: async (client, args) => {
        const { localizationId, ...attributes } = args;
        return client.request(`/appInfoLocalizations/${localizationId}`, {
          method: 'PATCH',
          body: {
            data: {
              type: 'appInfoLocalizations',
              id: localizationId,
              attributes,
            },
          },
        });
      },
    };
  • Zod schema defining the input parameters for the tool: localizationId (required), name (optional), subtitle (optional), privacyPolicyUrl (optional), privacyPolicyText (optional).
    schema: z.object({
      localizationId: z.string().describe('AppInfo Localization ID'),
      name: z.string().optional().describe('App name'),
      subtitle: z.string().optional().describe('App subtitle'),
      privacyPolicyUrl: z.string().optional(),
      privacyPolicyText: z.string().optional(),
    }),
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, and the description does not disclose behavioral traits such as idempotency, required permissions, or what happens if fields are omitted.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded, and concise. Could be slightly more structured with a list of fields, but no waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description is too minimal for a mutation tool with 5 parameters. It does not explain return values, constraints, or behavior when optional fields are not provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaning for three parameters (name, subtitle, privacyPolicyUrl) beyond the schema, but privacyPolicyText and localizationId are not mentioned. Schema coverage is 60%, so description partly compensates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb (update) and the resource (app info localization for a locale), distinguishing it from list and create siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like apple_create_version_localization or apple_list_app_info_localizations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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