Supabase Auth

sb_call_function

Call a stored PostgreSQL function (RPC) in Supabase. Use method=GET for immutable functions, POST for volatile ones (default).

Remote node2flow/supabase

Other tools also called sb_call_function? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "method": {
      "enum": [
        "GET",
        "POST"
      ],
      "type": "string",
      "description": "HTTP method. GET for immutable, POST for volatile (default: POST)"
    },
    "params": {
      "type": "object",
      "description": "Function parameters as key-value pairs"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "function_name": {
      "type": "string",
      "description": "PostgreSQL function name"
    }
  }
}