list_auth_users
Retrieve user data from the auth.users table in a self-hosted Supabase instance. Specify the number of users to return and skip for precise querying, enabling efficient user management and analysis.
Instructions
Lists users from the auth.users table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max number of users to return | |
| offset | No | Number of users to skip |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Max number of users to return",
"type": "number"
},
"offset": {
"default": 0,
"description": "Number of users to skip",
"type": "number"
}
},
"required": [],
"type": "object"
}