Skip to main content
Glama
concavegit
by concavegit

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
NameRequiredDescriptionDefault
limitNoMaximum number of groups to return (default: 100)

Implementation Reference

  • 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' }); }
  • TypeScript interface defining the response structure for list beta groups, consisting of an array of BetaGroup objects.
    export interface ListBetaGroupsResponse { data: BetaGroup[]; }
  • 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) };

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/concavegit/app-store-connect-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server