Skip to main content
Glama

apple_invite_beta_tester

Invite beta testers to your iOS app by providing their email and assigning them to specific beta groups for testing.

Instructions

Invite a beta tester

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesTester email
firstNameNoFirst name
lastNameNoLast name
betaGroupIdsYesArray of beta group IDs

Implementation Reference

  • The handler function for apple_invite_beta_tester which sends a POST request to /betaTesters to invite a tester.
    handler: async (client, args) => {
      const { betaGroupIds, ...attributes } = args;
      return client.request('/betaTesters', {
        method: 'POST',
        body: {
          data: {
            type: 'betaTesters',
            attributes,
            relationships: {
              betaGroups: { data: betaGroupIds.map((id: string) => ({ type: 'betaGroups', id })) },
            },
          },
        },
      });
  • The Zod schema definition for apple_invite_beta_tester inputs.
    schema: z.object({
      email: z.string().describe('Tester email'),
      firstName: z.string().optional().describe('First name'),
      lastName: z.string().optional().describe('Last name'),
      betaGroupIds: z.array(z.string()).describe('Array of beta group IDs'),
    }),
  • The definition object for apple_invite_beta_tester, including name, description, schema, and handler.
    const inviteBetaTester: ToolDef = {
      name: 'apple_invite_beta_tester',
      description: 'Invite a beta tester',
      schema: z.object({
        email: z.string().describe('Tester email'),
        firstName: z.string().optional().describe('First name'),
        lastName: z.string().optional().describe('Last name'),
        betaGroupIds: z.array(z.string()).describe('Array of beta group IDs'),
      }),
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