supabase-mcp

invoke_function

Invoke a Supabase Edge Function

Input Schema

NameRequiredDescriptionDefault
functionYesFunction name
optionsNo
paramsNoFunction parameters

Input Schema (JSON Schema)

{ "properties": { "function": { "description": "Function name", "type": "string" }, "options": { "properties": { "headers": { "description": "Custom headers", "type": "object" }, "responseType": { "description": "Response type", "enum": [ "json", "text", "arraybuffer" ], "type": "string" } }, "type": "object" }, "params": { "description": "Function parameters", "type": "object" } }, "required": [ "function" ], "type": "object" }