Supabase Auth

sb_create_user

Create a new user in Supabase Auth. Set email_confirm=true to skip email verification. Use app_metadata for admin-controlled data (roles, permissions).

Remote node2flow/supabase

Other tools also called sb_create_user? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "User email address"
    },
    "phone": {
      "type": "string",
      "description": "User phone number (E.164 format)"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "password": {
      "type": "string",
      "description": "User password"
    },
    "app_metadata": {
      "type": "object",
      "description": "Admin-only metadata (role, permissions, etc.)"
    },
    "email_confirm": {
      "type": "boolean",
      "description": "Auto-confirm email (skip verification, default: false)"
    },
    "phone_confirm": {
      "type": "boolean",
      "description": "Auto-confirm phone (default: false)"
    },
    "user_metadata": {
      "type": "object",
      "description": "User-editable metadata (name, avatar, etc.)"
    }
  }
}