Self-Hosted Supabase MCP Server

list_storage_objects

List objects in a specific storage bucket with options to filter by prefix, set limits, and offset results, enabling efficient storage management in self-hosted Supabase instances.

Instructions

Lists objects within a specific storage bucket, optionally filtering by prefix.

Input Schema

NameRequiredDescriptionDefault
bucket_idYesThe ID of the bucket to list objects from.
limitNoMax number of objects to return
offsetNoNumber of objects to skip
prefixNoFilter objects by a path prefix (e.g., 'public/')

Input Schema (JSON Schema)

{ "properties": { "bucket_id": { "description": "The ID of the bucket to list objects from.", "type": "string" }, "limit": { "default": 100, "description": "Max number of objects to return", "type": "number" }, "offset": { "default": 0, "description": "Number of objects to skip", "type": "number" }, "prefix": { "description": "Filter objects by a path prefix (e.g., 'public/')", "type": "string" } }, "required": [ "bucket_id" ], "type": "object" }
ID: kgziynf39e