Skip to content

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

This tool takes no parameters.

Returns a structured object. Top-level fields:

  • members (array<object>)
  • count (integer)

See the response example below for the full payload shape.

{
"name": "list_users",
"arguments": {}
}
{
"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.