supabase_storage_upload
Upload base64-encoded files to Supabase Storage buckets. Specify bucket, path, and content type, with optional upsert to overwrite existing files.
Instructions
Upload a file to a storage bucket (base64-encoded content)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | File path within the bucket (e.g., folder/file.txt) | |
| bucket | Yes | Bucket name | |
| upsert | No | Overwrite if file exists (default: false) | |
| fileBody | Yes | Base64-encoded file content | |
| contentType | No | MIME type of the file | application/octet-stream |