Skip to main content
Glama

apple_list_versions

Retrieve App Store version history for an app to track submissions, review status, and release states across iOS, macOS, tvOS, and visionOS platforms.

Instructions

List all App Store versions for an app

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdYesApp ID
platformNo
stateNoFilter by state (e.g. PREPARE_FOR_SUBMISSION, READY_FOR_SALE)

Implementation Reference

  • The handler logic for 'apple_list_versions' which performs a request to the App Store API.
    handler: async (client, args) => {
      const params: Record<string, string> = {};
      if (args.platform) params['filter[platform]'] = args.platform;
      if (args.state) params['filter[appStoreState]'] = args.state;
      return client.request(`/apps/${args.appId}/appStoreVersions`, { params });
    },
  • Zod schema definition for 'apple_list_versions' tool inputs.
    schema: z.object({
      appId: z.string().describe('App ID'),
      platform: z.enum(['IOS', 'MAC_OS', 'TV_OS', 'VISION_OS']).optional(),
      state: z.string().optional().describe('Filter by state (e.g. PREPARE_FOR_SUBMISSION, READY_FOR_SALE)'),
    }),
  • Tool definition and registration block for 'apple_list_versions'.
    const listVersions: ToolDef = {
      name: 'apple_list_versions',
      description: 'List all App Store versions for an app',
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