Skip to main content
Glama

apple_create_screenshot_set

Create a screenshot set for a specific display type in App Store Connect to manage app listings and submissions.

Instructions

Create a screenshot set for a specific display type

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
localizationIdYesVersion Localization ID
displayTypeYesDisplay type (e.g. APP_IPHONE_67, APP_IPHONE_65, APP_IPAD_PRO_129, APP_IPAD_PRO_3GEN_129)

Implementation Reference

  • The handler for 'apple_create_screenshot_set' that makes a POST request to create an app screenshot set.
      handler: async (client, args) => {
        return client.request('/appScreenshotSets', {
          method: 'POST',
          body: {
            data: {
              type: 'appScreenshotSets',
              attributes: { screenshotDisplayType: args.displayType },
              relationships: {
                appStoreVersionLocalization: {
                  data: { type: 'appStoreVersionLocalizations', id: args.localizationId },
                },
              },
            },
          },
        });
      },
    };
  • The input schema for 'apple_create_screenshot_set'.
    schema: z.object({
      localizationId: z.string().describe('Version Localization ID'),
      displayType: z.string().describe('Display type (e.g. APP_IPHONE_67, APP_IPHONE_65, APP_IPAD_PRO_129, APP_IPAD_PRO_3GEN_129)'),
    }),
  • The definition of 'apple_create_screenshot_set' tool.
    const createScreenshotSet: ToolDef = {
      name: 'apple_create_screenshot_set',
      description: 'Create a screenshot set for a specific display type',
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