Skip to main content
Glama

apple_list_beta_testers

Retrieve beta tester details for iOS apps to manage testing groups and review participant information.

Instructions

List beta testers

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailNoFilter by email
appIdNoFilter by app ID

Implementation Reference

  • The handler function for the 'apple_list_beta_testers' tool, which constructs query parameters and makes a request to the '/betaTesters' endpoint.
    handler: async (client, args) => {
      const params: Record<string, string> = {};
      if (args.email) params['filter[email]'] = args.email;
      if (args.appId) params['filter[app]'] = args.appId;
      return client.request('/betaTesters', { params });
  • The Zod schema defining the input arguments for the 'apple_list_beta_testers' tool.
    schema: z.object({
      email: z.string().optional().describe('Filter by email'),
      appId: z.string().optional().describe('Filter by app ID'),
    }),
  • The tool definition registration for 'apple_list_beta_testers'.
    const listBetaTesters: ToolDef = {
      name: 'apple_list_beta_testers',
      description: 'List beta testers',
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