Skip to main content
Glama
concavegit
by concavegit

remove_tester_from_group

Remove a beta tester from a beta group in App Store Connect to manage test participant access for iOS and macOS app development.

Instructions

Remove a tester from a beta group

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
groupIdYesThe ID of the beta group
testerIdYesThe ID of the beta tester

Implementation Reference

  • The handler function that executes the logic to remove a tester from a beta group using the App Store Connect API DELETE request to /betaGroups/{groupId}/relationships/betaTesters.
    async removeTesterFromGroup(args: { groupId: string; testerId: string; }): Promise<{ success: boolean; message: string }> { const { groupId, testerId } = args; validateRequired(args, ['groupId', 'testerId']); const requestBody: RemoveTesterRequest = { data: [{ id: testerId, type: "betaTesters" }] }; await this.client.delete(`/betaGroups/${groupId}/relationships/betaTesters`, requestBody); return { success: true, message: "Tester removed from group successfully" }; }
  • Input schema definition for the 'remove_tester_from_group' tool, defining the required parameters: groupId and testerId.
    name: "remove_tester_from_group", description: "Remove a tester from a beta group", inputSchema: { type: "object", properties: { groupId: { type: "string", description: "The ID of the beta group" }, testerId: { type: "string", description: "The ID of the beta tester" } }, required: ["groupId", "testerId"] } },
  • src/index.ts:1331-1332 (registration)
    Registration and dispatch logic in the callTool handler switch statement, mapping the tool name to the BetaHandlers.removeTesterFromGroup method.
    case "remove_tester_from_group": return { toolResult: await this.betaHandlers.removeTesterFromGroup(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