app-store-connect-mcp-server

add_tester_to_group

Add a new tester to a beta group

Input Schema

NameRequiredDescriptionDefault
emailYesEmail address of the tester
firstNameYesFirst name of the tester
groupIdYesThe ID of the beta group
lastNameYesLast name of the tester

Input Schema (JSON Schema)

{ "properties": { "email": { "description": "Email address of the tester", "type": "string" }, "firstName": { "description": "First name of the tester", "type": "string" }, "groupId": { "description": "The ID of the beta group", "type": "string" }, "lastName": { "description": "Last name of the tester", "type": "string" } }, "required": [ "groupId", "email", "firstName", "lastName" ], "type": "object" }