Skip to main content
Glama

apple_add_beta_testers_to_group

Add beta testers to a beta testing group for iOS app distribution through App Store Connect. Specify beta group ID and tester IDs to manage testing access.

Instructions

Add beta testers to a group

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
betaGroupIdYesBeta Group ID
betaTesterIdsYesArray of beta tester IDs

Implementation Reference

  • The handler function that performs a POST request to the App Store Connect API to add beta testers to a specific group.
    handler: async (client, args) => {
      return client.request(`/betaGroups/${args.betaGroupId}/relationships/betaTesters`, {
        method: 'POST',
        body: {
          data: args.betaTesterIds.map((id: string) => ({ type: 'betaTesters', id })),
        },
      });
    },
  • The schema defining the required input arguments for the tool (betaGroupId and betaTesterIds).
    schema: z.object({
      betaGroupId: z.string().describe('Beta Group ID'),
      betaTesterIds: z.array(z.string()).describe('Array of beta tester IDs'),
    }),
  • The tool definition object `addBetaTestersToGroup` is included in the exported `appleTools` array.
    addBetaTestersToGroup, removeBetaTestersFromGroup,

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