get_app_store_version_localization
Retrieve detailed information about a specific App Store version localization using its ID to manage app metadata and translations for different regions.
Instructions
Get detailed information about a specific app store version localization
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| localizationId | Yes | The ID of the app store version localization |
Implementation Reference
- src/handlers/localizations.ts:71-81 (handler)The main handler function that executes the tool logic: fetches the AppStoreVersionLocalization by ID from the App Store Connect API using the client.async getAppStoreVersionLocalization(args: { localizationId: string; }): Promise<AppStoreVersionLocalizationResponse> { const { localizationId } = args; validateRequired(args, ['localizationId']); return this.client.get<AppStoreVersionLocalizationResponse>( `/appStoreVersionLocalizations/${localizationId}` ); }
- src/index.ts:427-440 (schema)JSON Schema defining the tool's input parameters for MCP tool listing.{ name: "get_app_store_version_localization", description: "Get detailed information about a specific app store version localization", inputSchema: { type: "object", properties: { localizationId: { type: "string", description: "The ID of the app store version localization" } }, required: ["localizationId"] } },
- src/index.ts:1357-1358 (registration)Registration in the tool call handler switch statement that maps the tool name to the LocalizationHandlers method.case "get_app_store_version_localization": return { toolResult: await this.localizationHandlers.getAppStoreVersionLocalization(args as any) };