Supabase Realtime API

Streams Postgres database change events (INSERT, UPDATE, DELETE) and provides broadcast and presence channels over WebSockets, tightly integrated with the Supabase platform.

Evaluated Mar 06, 2026 (0d ago) vcurrent
Homepage ↗ Repo ↗ Other postgres cdc broadcast presence websocket change-data-capture row-level-security
⚙ Agent Friendliness
80
/ 100
Can an agent use this?
🔒 Security
87
/ 100
Is it safe for agents?
⚡ Reliability
82
/ 100
Does it work consistently?

Score Breakdown

⚙ Agent Friendliness

MCP Quality
75
Documentation
85
Error Messages
80
Auth Simplicity
83
Rate Limits
78

🔒 Security

TLS Enforcement
100
Auth Strength
85
Scope Granularity
85
Dep. Hygiene
83
Secret Handling
83

Row Level Security integration is a strong security feature — Realtime honors the same policies as the REST API. Service role key grants full bypass and must be kept strictly server-side. JWTs can be scoped to specific roles for fine-grained access.

⚡ Reliability

Uptime/SLA
85
Version Stability
82
Breaking Changes
80
Error Recovery
80
AF Security Reliability

Best When

Your agent stack is already on Supabase/Postgres and you want zero-infrastructure real-time change notifications gated by existing row-level security policies.

Avoid When

You need real-time messaging independent of a relational database, or require message delivery guarantees with acknowledgment and replay semantics.

Use Cases

  • Reactively notifying agents when database rows they care about are inserted or updated without polling the database
  • Building agent observability dashboards that display live task and job state as rows change in Postgres
  • Implementing multi-agent coordination via Broadcast channels where agents post signals to named channels without database writes
  • Tracking which agents are currently active in a workspace using Presence channels with automatic heartbeat handling
  • Triggering downstream agent logic via database webhooks when upstream agents commit results to shared tables

Not For

  • Projects not already using or willing to adopt Supabase — Realtime is tightly coupled to the Supabase platform and Postgres
  • High-frequency event streams at sub-10ms latency — Postgres CDC replication lag introduces baseline latency unsuitable for ultra-low-latency use cases
  • Complex message transformation or routing — Supabase Realtime delivers raw change events with no built-in server-side filtering logic beyond row-level security

Interface

REST API
Yes
GraphQL
No
gRPC
No
MCP Server
Yes
SDK
Yes
Webhooks
Yes

Authentication

Methods: api_key jwt
OAuth: No Scopes: Yes

Realtime channels respect Supabase Row Level Security policies — channel subscriptions are authorized based on the user's JWT. Anon key allows public channel access; service role key bypasses RLS for server-side agents.

Pricing

Model: freemium
Free tier: Yes
Requires CC: No

Realtime is bundled into Supabase plans, not priced separately. Message counts include Postgres changes, broadcasts, and presence events. Paused free projects stop receiving Realtime events.

Agent Metadata

Pagination
none
Idempotent
Partial
Retry Guidance
Documented

Known Gotchas

  • Supabase free tier projects pause after 1 week of inactivity — Realtime subscriptions silently drop and do not resume until the project is unpaused
  • Row Level Security policies apply to Realtime subscriptions, so an agent using the anon key may subscribe to a channel but receive zero events if RLS blocks the underlying table access
  • Postgres CDC replication lag means Realtime events are not instantaneous — under heavy write load, events may arrive hundreds of milliseconds after the commit
  • Channel multiplexing is handled client-side in the SDK — agents opening many channels on one connection can cause head-of-line blocking where a slow channel delays others
  • Broadcast and Presence channels do not persist messages — if an agent is disconnected even briefly, it will miss all events published during the disconnection window

Alternatives

Full Evaluation Report

Detailed scoring breakdown, competitive positioning, security analysis, and improvement recommendations for Supabase Realtime API.

$99

Scores are editorial opinions as of 2026-03-06.

5178
Packages Evaluated
26151
Need Evaluation
173
Need Re-evaluation
Community Powered