supabase-mcp

create_record

Create a new record in a Supabase table

Input Schema

NameRequiredDescriptionDefault
dataYesRecord data
returningNoFields to return (optional)
tableYesTable name

Input Schema (JSON Schema)

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