Skip to main content
Glama

apple_submit_for_review

Submit your iOS app version to Apple for App Store review to publish updates or new releases.

Instructions

Submit an App Store version for review

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
versionIdYesApp Store Version ID

Implementation Reference

  • The tool 'apple_submit_for_review' is defined as a ToolDef object. It contains the schema (requiring 'versionId') and a handler that performs a POST request to '/appStoreVersionSubmissions' to initiate the submission.
    const submitForReview: ToolDef = {
      name: 'apple_submit_for_review',
      description: 'Submit an App Store version for review',
      schema: z.object({
        versionId: z.string().describe('App Store Version ID'),
      }),
      handler: async (client, args) => {
        return client.request('/appStoreVersionSubmissions', {
          method: 'POST',
          body: {
            data: {
              type: 'appStoreVersionSubmissions',
              relationships: {
                appStoreVersion: {
                  data: { type: 'appStoreVersions', id: args.versionId },
                },
              },
            },
          },
        });
      },
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