supabase

Installation
SKILL.md

Supabase

Query database tables, manage auth users, and storage.

Environment Variables

  • SUPABASE_URL - Project URL (e.g. https://abc.supabase.co)
  • SUPABASE_SERVICE_KEY - Service role key

Query table

curl -s -H "apikey: $SUPABASE_SERVICE_KEY" \
  -H "Authorization: Bearer $SUPABASE_SERVICE_KEY" \
  "$SUPABASE_URL/rest/v1/TABLE_NAME?select=*&limit=10" | jq '.[]'

Insert row

Installs
1
First Seen
Mar 1, 2026
supabase — thinkfleetai/thinkfleet-engine