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
| Name | Required | Description | Default |
|---|---|---|---|
| appStoreVersionId | Yes | The ID of the app store version | |
| limit | No | Maximum number of localizations to return (default: 100) |
Implementation Reference
- src/handlers/localizations.ts:52-69 (handler)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 ); }
- src/index.ts:407-426 (schema)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) };
- src/types/localizations.ts:25-37 (schema)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; }; }; }