apple_list_screenshot_sets
Retrieve screenshot sets for a specific app localization to manage visual assets in App Store Connect.
Instructions
List screenshot sets for a localization
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| localizationId | Yes | Version Localization ID |
Implementation Reference
- src/apple/tools.ts:266-278 (handler)The handler and schema definition for the apple_list_screenshot_sets tool.
const listScreenshotSets: ToolDef = { name: 'apple_list_screenshot_sets', description: 'List screenshot sets for a localization', schema: z.object({ localizationId: z.string().describe('Version Localization ID'), }), handler: async (client, args) => { return client.request( `/appStoreVersionLocalizations/${args.localizationId}/appScreenshotSets`, { params: { 'include': 'appScreenshots' } }, ); }, };