Supabase Auth
sb_list_objects
List objects (files) in a Supabase storage bucket. Supports prefix filtering, pagination, and search.
Remote node2flow/supabase
Other tools also called sb_list_objects?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"description": "Maximum number of objects to return (default: 100)"
},
"bucket": {
"type": "string",
"description": "Bucket name"
},
"offset": {
"type": "number",
"description": "Number of objects to skip"
},
"prefix": {
"type": "string",
"description": "Filter by path prefix (folder). Example: images/ or uploads/2026/"
},
"search": {
"type": "string",
"description": "Search term to filter objects by name"
},
"_fields": {
"type": "string",
"description": "Comma-separated list of fields to include in the response"
},
"sort_order": {
"enum": [
"asc",
"desc"
],
"type": "string",
"description": "Sort order (default: asc)"
},
"sort_column": {
"type": "string",
"description": "Column to sort by: name, created_at, updated_at"
}
}
}