list_users
List all tenant members and pending invites. Requires Owner role. Returns: members (list[{user_id, email, role, status}]) — one entry per member or pending invite (user_id is null for pending invites, status is ‘pending’ or ‘active’); count (int) — total members and pending invites.
read-only · idempotent
Parameters
Section titled “Parameters”This tool takes no parameters.
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
members(array<object>)count(integer)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "list_users", "arguments": {}}Response
Section titled “Response”{ "members": [ { "user_id": "22222222-2222-2222-2222-222222222222", "email": "alice@example.com", "role": "owner", "status": "active" }, { "user_id": null, "email": "carol@example.com", "role": "viewer", "status": "pending" } ], "count": 2}- Module:
Admin - Requires authentication via API token or Auth0 JWT.