elaichi__team__list
List the organization’s teams: id (team_…), name, description and member count. q filters by team name before paging. Who belongs to a team is not in these rows — read one with team.get. Returns { result: [...], nextCursor, prevCursor } — camelCase here, unlike the REST API’s next_cursor. Page by sending nextCursor back as cursor until it is null.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Case-insensitive substring of the team name, applied before paging. Matches team names only, never member names. | |
| limit | No | Rows per page, 1–200 (default 50). Larger values are clamped, not rejected. | |
| cursor | No | Opaque cursor taken verbatim from a previous call’s `nextCursor`. Omit for the first page. |