Skip to main content
Glama

apple_list_version_localizations

Retrieve all language-specific localizations for an App Store version to manage multilingual app listings and metadata.

Instructions

List all localizations for a version

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
versionIdYesApp Store Version ID

Implementation Reference

  • The handler function that executes the request to list version localizations.
    handler: async (client, args) => {
      return client.request(`/appStoreVersions/${args.versionId}/appStoreVersionLocalizations`);
    },
  • The input schema for the tool defining the required versionId.
    schema: z.object({
      versionId: z.string().describe('App Store Version ID'),
    }),
  • The registration of the apple_list_version_localizations tool within the tools definition.
    const listVersionLocalizations: ToolDef = {
      name: 'apple_list_version_localizations',
      description: 'List all localizations for a version',
      schema: z.object({
        versionId: z.string().describe('App Store Version ID'),
      }),
      handler: async (client, args) => {
        return client.request(`/appStoreVersions/${args.versionId}/appStoreVersionLocalizations`);
      },
    };

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