Skip to main content
Glama

apple_assign_build

Assign a specific build to an App Store version for release management. This tool links build IDs to App Store versions in App Store Connect.

Instructions

Assign a build to an App Store version

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
versionIdYesApp Store Version ID
buildIdYesBuild ID

Implementation Reference

  • The handler function that executes the 'apple_assign_build' tool by sending a PATCH request to the App Store Connect API.
    handler: async (client, args) => {
      return client.request(`/appStoreVersions/${args.versionId}/relationships/build`, {
        method: 'PATCH',
        body: {
          data: { type: 'builds', id: args.buildId },
        },
      });
    },
  • The Zod schema defining the input arguments for the 'apple_assign_build' tool.
    schema: z.object({
      versionId: z.string().describe('App Store Version ID'),
      buildId: z.string().describe('Build ID'),
    }),
  • The registration definition for the 'apple_assign_build' tool, including its name and description.
    const assignBuild: ToolDef = {
      name: 'apple_assign_build',
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