Skip to main content
Glama
concavegit
by concavegit

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
NameRequiredDescriptionDefault
localizationIdYesThe ID of the app store version localization

Implementation Reference

  • 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}` ); }
  • 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) };

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