Skip to main content
Glama

apple_delete_screenshot

Remove screenshots from App Store Connect listings to manage app presentation and update visual content.

Instructions

Delete a screenshot

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
screenshotIdYesScreenshot ID

Implementation Reference

  • The handler function that performs the DELETE request to remove the screenshot from App Store Connect.
    handler: async (client, args) => {
      await client.request(`/appScreenshots/${args.screenshotId}`, { method: 'DELETE' });
      return { success: true };
    },
  • Input schema validation for the apple_delete_screenshot tool, requiring a screenshotId.
    schema: z.object({
      screenshotId: z.string().describe('Screenshot ID'),
    }),
  • The full tool definition for apple_delete_screenshot, including its name, description, schema, and handler.
    const deleteScreenshot: ToolDef = {
      name: 'apple_delete_screenshot',
      description: 'Delete a screenshot',
      schema: z.object({
        screenshotId: z.string().describe('Screenshot ID'),
      }),
      handler: async (client, args) => {
        await client.request(`/appScreenshots/${args.screenshotId}`, { method: 'DELETE' });
        return { success: true };
      },
    };

Tool Definition Quality

Score is being calculated. Check back soon.

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