Supabase Auth

sb_run_query

Execute a SQL query on a Supabase project database via the Management API. Supports SELECT, INSERT, UPDATE, DELETE, CREATE TABLE, and all SQL. Returns query results as JSON.

Remote node2flow/supabase

Other tools also called sb_run_query? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "SQL query to execute. Example: SELECT * FROM users LIMIT 10"
    },
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "project_ref": {
      "type": "string",
      "description": "Project reference ID"
    }
  }
}