Skip to main content
Glama

apple_cancel_submission

Cancel an App Store Connect submission currently under review by providing the submission ID to stop the review process.

Instructions

Cancel an in-review submission (if still possible)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
submissionIdYesSubmission ID

Implementation Reference

  • The tool definition and handler for 'apple_cancel_submission', which performs a DELETE request on the App Store Version Submission endpoint.
    const cancelSubmission: ToolDef = {
      name: 'apple_cancel_submission',
      description: 'Cancel an in-review submission (if still possible)',
      schema: z.object({
        submissionId: z.string().describe('Submission ID'),
      }),
      handler: async (client, args) => {
        await client.request(`/appStoreVersionSubmissions/${args.submissionId}`, {
          method: 'DELETE',
        });
        return { success: true };
      },
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