supabase-mcp

read_records

Read records from a Supabase table

Input Schema

NameRequiredDescriptionDefault
filterNoFilter conditions (optional)
selectNoFields to select (optional)
tableYesTable name

Input Schema (JSON Schema)

{ "properties": { "filter": { "description": "Filter conditions (optional)", "type": "object" }, "select": { "description": "Fields to select (optional)", "items": { "type": "string" }, "type": "array" }, "table": { "description": "Table name", "type": "string" } }, "required": [ "table" ], "type": "object" }