Skip to main content
Glama
concavegit
by concavegit

remove_tester_from_group

Remove a beta tester from a beta testing group in App Store Connect to manage test access and group composition.

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 main handler function that performs the API DELETE request to remove the specified tester from the beta group.
    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" }; }
  • JSON schema defining the input parameters: groupId and testerId as required strings.
    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:196-212 (registration)
    Tool registration in the buildToolsList() array, defining name, description, and schema.
    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:1332-1333 (registration)
    Dispatch registration in the CallToolRequest handler switch statement, binding the tool name to the betaHandlers.removeTesterFromGroup method.
    return { toolResult: await this.betaHandlers.removeTesterFromGroup(args as any) };
  • TypeScript interface used in the handler for the request body structure sent to the App Store Connect API.
    export interface RemoveTesterRequest { data: Array<{ id: string; type: "betaTesters"; }>; }

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