Skip to main content

🚀 Quickstart

Connect to the Supabase MCP server with Nango via OAuth. Nango automatically registers an OAuth client on your behalf — no manual credential setup required.
1

Create the integration

In Nango (free signup), go to IntegrationsConfigure New IntegrationSupabase (MCP OAuth).Nango will automatically register an OAuth client with Supabase using dynamic client registration. Your Client ID and Client Secret will appear in the integration settings once created.
2

Authorize Supabase

Go to ConnectionsAdd Test ConnectionAuthorize, then log in to your Supabase account and grant access. Later, you’ll let your users do the same directly from your app.
3

Call the Supabase MCP server

Make your first MCP request (e.g. list tools). Replace the placeholders below with your secret key, integration ID, and connection ID.For <PROJECT-REF>, use the project reference you entered when creating the connection. You can find it on the connection details page under Connection Config → projectRef.
curl "https://api.nango.dev/proxy/mcp?project_ref=<PROJECT-REF>" \
  -X POST \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/list",
    "params": {}
}'
✅ You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.

📚 Supabase (MCP OAuth) guides

Nango-maintained guides for common use cases. Official docs: Supabase MCP documentation

🧩 Pre-built syncs & actions for Supabase (MCP OAuth)

Enable them in your dashboard. Extend and customize to fit your needs. No pre-built syncs or actions available yet.
Not seeing the integration you need? Build your own independently.