supabase-mcp

upload_file

Upload a file to Supabase Storage

Input Schema

NameRequiredDescriptionDefault
bucketYesStorage bucket name
fileYesFile to upload
optionsNoUpload options (optional)
pathYesFile path in bucket

Input Schema (JSON Schema)

{ "properties": { "bucket": { "description": "Storage bucket name", "type": "string" }, "file": { "description": "File to upload", "type": "object" }, "options": { "description": "Upload options (optional)", "properties": { "cacheControl": { "type": "string" }, "contentType": { "type": "string" }, "upsert": { "type": "boolean" } }, "type": "object" }, "path": { "description": "File path in bucket", "type": "string" } }, "required": [ "bucket", "path", "file" ], "type": "object" }