list-users
Retrieve all registered Clerk users with pagination controls to manage user lists efficiently.
Instructions
Lista todos os usuários cadastrados no Clerk com paginação
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
orderBy | No | created_at |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"default": 0,
"minimum": 0,
"type": "number"
},
"orderBy": {
"default": "created_at",
"enum": [
"created_at",
"updated_at"
],
"type": "string"
}
},
"type": "object"
}