Supabase Auth

sb_create_bucket

Create a new storage bucket in Supabase. Set public=true for publicly accessible files. Optionally set file size limit and allowed MIME types.

Remote node2flow/supabase

Other tools also called sb_create_bucket? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Bucket name (unique identifier)"
    },
    "public": {
      "type": "boolean",
      "description": "Whether files are publicly accessible (default: false)"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "file_size_limit": {
      "type": "number",
      "description": "Maximum file size in bytes (e.g. 1048576 for 1MB)"
    },
    "allowed_mime_types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Allowed MIME types. Example: [\"image/png\", \"image/jpeg\"]"
    }
  }
}