supabase-mcp

delete_record

Delete records from a Supabase table

Input Schema

NameRequiredDescriptionDefault
filterNoFilter conditions
returningNoFields to return (optional)
tableYesTable name

Input Schema (JSON Schema)

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