list_beta_groups
Retrieve all internal and external beta testing groups for iOS/macOS apps to manage testing workflows and participant access.
Instructions
Get a list of all beta groups (internal and external)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of groups to return (default: 100) |
Implementation Reference
- src/handlers/beta.ts:21-28 (handler)The handler function listBetaGroups that makes the API call to retrieve beta groups from App Store Connect, supporting optional limit parameter.async listBetaGroups(args: { limit?: number } = {}): Promise<ListBetaGroupsResponse> { const { limit = 100 } = args; return this.client.get<ListBetaGroupsResponse>('/betaGroups', { limit: sanitizeLimit(limit), include: 'app,betaTesters' }); }
- src/types/beta.ts:26-28 (schema)TypeScript interface defining the response structure for list beta groups, consisting of an array of BetaGroup objects.export interface ListBetaGroupsResponse { data: BetaGroup[]; }
- src/index.ts:135-147 (schema)MCP tool schema definition including name, description, and input validation schema for the list_beta_groups tool.name: "list_beta_groups", description: "Get a list of all beta groups (internal and external)", inputSchema: { type: "object", properties: { limit: { type: "number", description: "Maximum number of groups to return (default: 100)", minimum: 1, maximum: 200 } } }
- src/index.ts:1322-1324 (registration)Registration of the list_beta_groups tool handler in the MCP server's request handler switch statement, dispatching to BetaHandlers.listBetaGroups method.case "list_beta_groups": return { toolResult: await this.betaHandlers.listBetaGroups(args as any) };