List teams
umami_list_teamsList all teams on your Umami account, showing member and website counts per team. Supports pagination and markdown or JSON output.
Instructions
List every team on this Umami account, with member and website counts.
Args:
limit (number): Rows to return, 1-500 (default: 20).
offset (number): Rows to skip, converted to a page number (default: 0).
response_format ('markdown' | 'json'): Output format (default: 'markdown').
Returns: JSON shape: { "count": number, "teams": [ { "id": string, "name": string, "access_code": string, "website_count": number, "member_count": number } ] }
Examples:
"What teams do we have set up?" -> no arguments
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum rows to return. | |
| offset | No | Rows to skip, for pagination. | |
| response_format | No | Output format: 'markdown' for a readable summary, 'json' for raw structured data. | markdown |