Skip to main content
Glama

get_testers

Retrieve tester emails and Google Groups for internal or alpha app testing tracks in Google Play Console.

Instructions

Get tester emails and Google Groups for an internal or alpha track.

Args: package_name: Package name, e.g. com.example.myapp track: "internal" (default) or "alpha".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
package_nameYes
trackNointernal

Implementation Reference

  • The tool definition and entry point for 'get_testers', which uses the Google Play publisher client to fetch tester information.
    def get_testers(
        package_name: str,
        track: str = "internal",
    ) -> str:
        """Get tester emails and Google Groups for an internal or alpha track.
    
        Args:
            package_name: Package name, e.g. com.example.myapp
            track: "internal" (default) or "alpha".
        """
        try:
            data = _publisher().get_testers(package_name, track)
            return json.dumps(
                {
                    "packageName": package_name,
                    "track": track,
                    "testers": data.get("testers", []),
                    "googleGroups": data.get("googleGroups", []),
                },
                indent=2,
            )
        except Exception as exc:
            return json.dumps({"success": False, "error": str(exc)}, indent=2)
  • The implementation of 'get_testers' in the client class, which interacts with the Google Play Developer API via the edits service.
    def get_testers(self, package_name: str, track: str) -> Dict[str, Any]:
        """Get tester emails and Google Groups for an internal/closed testing track."""
        edit_id = self._create_edit(package_name)
        try:
            return self.service.edits().testers().get(
                packageName=package_name, editId=edit_id, track=track
            ).execute()
        finally:
            self._delete_edit(package_name, edit_id)

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/AgiMaulana/GooglePlayConsoleMcp'

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