Supabase Auth

sb_list_users

List all users in the Supabase Auth system. Returns paginated results with user details including email, metadata, and creation date.

Remote node2flow/supabase

Other tools also called sb_list_users? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "page": {
      "type": "number",
      "description": "Page number (starts at 1)"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "per_page": {
      "type": "number",
      "description": "Users per page (default: 50, max: 1000)"
    }
  }
}