Skip to content

list_users

list_users

Return every user that is a member of the authenticated user’s team, ordered by name. Use this to discover valid assigneeIds values for create_task and update_task.

This tool takes no arguments.

A single text content block containing a JSON array of user objects.

FieldTypeDescription
idstringUser ID (UUID). Pass this as assigneeIds[] items.
namestringUser’s display name.
emailstringUser’s email address.
imagestring | nullURL of the user’s avatar image, or null.
rolestringTeam role: owner, admin, or member.
[
  { "id": "u_abc123", "name": "Tom",  "email": "tom@example.com",  "image": null, "role": "owner" },
  { "id": "u_def456", "name": "Sara", "email": "sara@example.com", "image": null, "role": "member" }
]