Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.26 KB

File metadata and controls

42 lines (29 loc) · 1.26 KB

Supabase

Category: Data Stores

Summary: Hosted Postgres + realtime + auth that can be used as a vector-enabled backend with extensions.

Compatibility


Quick-Start

Compatibility Install Run Notes
Cloud, Local npx supabase init -y supabase start Uses SUPABASE_URL and SUPABASE_SERVICE_ROLE_KEY env vars

Security Profile

Scope Risk Mitigation
Network High Use RLS, service roles, and rotate keys
Storage Medium Backups and encryption

Configuration Example

{
  "command": "npx",
  "args": ["supabase", "init", "-y"],
  "env": {
    "SUPABASE_URL": "${SUPABASE_URL}",
    "SUPABASE_SERVICE_ROLE_KEY": "${SUPABASE_SERVICE_ROLE_KEY}"
  }
}

Notes

  • Suggested category: Data Stores — great for managed Postgres and quick prototypes.
  • Security rating: High for internet-exposed instances.

Last updated: 2026-01-28