Skip to main content
Glama
concavegit
by concavegit

list_app_store_version_localizations

Retrieve all language and region localizations for a specific App Store version to manage app metadata across different markets.

Instructions

Get all localizations for a specific app store version

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appStoreVersionIdYesThe ID of the app store version
limitNoMaximum number of localizations to return (default: 100)

Implementation Reference

  • The core handler function that executes the tool logic by calling the App Store Connect API to list localizations for a specific app store version.
    async listAppStoreVersionLocalizations(args: { appStoreVersionId: string; limit?: number; }): Promise<ListAppStoreVersionLocalizationsResponse> { const { appStoreVersionId, limit = 100 } = args; validateRequired(args, ['appStoreVersionId']); const params: Record<string, any> = { limit: sanitizeLimit(limit), 'filter[appStoreVersion]': appStoreVersionId }; return this.client.get<ListAppStoreVersionLocalizationsResponse>( '/appStoreVersionLocalizations', params ); }
  • Input schema definition for the 'list_app_store_version_localizations' tool, registered in the MCP server.
    { name: "list_app_store_version_localizations", description: "Get all localizations for a specific app store version", inputSchema: { type: "object", properties: { appStoreVersionId: { type: "string", description: "The ID of the app store version" }, limit: { type: "number", description: "Maximum number of localizations to return (default: 100)", minimum: 1, maximum: 200 } }, required: ["appStoreVersionId"] } },
  • src/index.ts:1354-1355 (registration)
    Tool execution registration in the MCP server request handler switch statement, dispatching to the handler method.
    case "list_app_store_version_localizations": return { toolResult: await this.localizationHandlers.listAppStoreVersionLocalizations(args as any) };
  • TypeScript interface defining the expected response structure from the App Store Connect API for listing version localizations.
    export interface ListAppStoreVersionLocalizationsResponse { data: AppStoreVersionLocalization[]; links?: { self: string; next?: string; }; meta?: { paging: { total: number; limit: number; }; }; }

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/concavegit/app-store-connect-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server