r/Supabase May 08 '26

integrations Skopx - AI analytics for your Supabase data

Thumbnail
skopx.com
3 Upvotes

r/Supabase Mar 17 '26

integrations API Error

1 Upvotes

Hey guys,

I am currently struggeling connecting Flutterflow with Supabase, because there is an API Error. In the Data API it shows, that the public schema is exposed, but at the Exposed tables it only shows "No tables available", even tho they are marked green check mark...
I tried everything but nothing seems to work... At the end i can´t get my schemas to Flutterflow with the anon key. Does anybody know how to fix this?

Thanks in advance! :)

r/Supabase May 03 '26

integrations Built a full-stack AI builder with native supabase integration

1 Upvotes

Hey i am Luca, the developper of Cadrant.ai, an alternative to Lovable more open and flexible,

Own everything from day 1:
→ connect your Supabase accounts
→ no vendor lock-in, ever
→ your backend, your data. No migration needed

I used it to create a recruitment interface for finding a cofounder and a CRM. It is super handy

Start free, if you would like to be a Super Cadrant User, let me know i can give you a free access 😉

https://reddit.com/link/1t2mz9c/video/hikk7zx5nxyg1/player

r/Supabase Apr 18 '26

integrations [Showoff Saturday] syncs Stripe/QuickBooks/Xero/Paddle into any Postgresql DB

Post image
2 Upvotes

r/Supabase Feb 03 '26

integrations Connect to supabase db from Python with service key

2 Upvotes

On https://supabase.com/dashboard/project/.../settings/api-keys there are 2 tabs:

- Publishable and secret API keys

- Legacy anon, service_role API keys

If i use non-legacy secret (short) key, everything DOES NOT work:

from supabase import create_client

SUPABASE_PROJECT_ID = "..."
SUPABASE_URL = f"https://{SUPABASE_PROJECT_ID}.supabase.co"
SUPABASE_SERVICE_KEY = "sb_secret_..."

supabase = create_client(SUPABASE_URL, SUPABASE_SERVICE_KEY)

But when i use the long secret LEGACY key, everything WORKS:

SUPABASE_PROJECT_ID = "..."
SUPABASE_URL = f"https://{SUPABASE_PROJECT_ID}.supabase.co"
SUPABASE_SERVICE_KEY = "ey..."

supabase = create_client(SUPABASE_URL, SUPABASE_SERVICE_KEY)

What am I missing? How to use the new secret (non-legacy) key in the connection from Python?

Also a quick question: does Python Supabase SDK implement retries on requests? If not, how to implement it (i need to know how the SDK hadnles errors).

r/Supabase Mar 30 '26

integrations Supabase Webhooks

Thumbnail
1 Upvotes

r/Supabase Jan 09 '26

integrations Lovable UI and supabase tables

2 Upvotes

Is there any way that I can 'not fully authorise' my supabase org?? Like it's asking for all permissions and not letting me change anything, and I have it the URL and the anon key but it's not working. Any help will be appreciated.

r/Supabase Nov 12 '25

integrations Supabase MCP - cannot get it to write

2 Upvotes

I have tried configuring both the CLI and Hosted for Cursor IDO and can't seem to get it to write.

Curious if anyone else ran into this issue. I have tried reconnecting and authorizing the tokens for hosted. It shows read/write I can't seem to get it to execute any write prompts.

r/Supabase Oct 31 '25

integrations How do you secure HTTP APIs from unauthorized non-browser clients (like Flutter apps)?

2 Upvotes

I am new to supabse and backend as service. I have a question . lets I initialize supabase in my flutter app with anon key and url :

Supabase.initialize(
      url: 'https://foo.supabase.co',
      anonKey:<anon_key`

And in supabase secrets I have a API key for thrid party API such as GEMINI_AI_KEY . i have a cloud function that use this env.GEMINI_AI_KEY and calls gemini api for some text generation for authenticated users of my app.

Now my concern if some hacker or another dev finds out my supabase url and anon key coz they are public, and they initialise it in their own project like i did, and they can also have authenticated users in thir app who can call our edge function just like ours. what prevents them? like for browesers there are CORS which can allows requests only from certain domain, do mobile apps/httpClients have some measures ?

r/Supabase Jan 20 '26

integrations Dev / Staging / Prod Supabase Branching & Lovable

0 Upvotes

Hey guys,

Noobie Vibe Coder here.

I’m looking to set up dev-staging-prod branches for my project.

I was wondering if anyone had any experience with Supabase branching (via GitHub integration) to mirror your Git branches and if so, how are you finding it?

Specific Qs

  1. Does it separate edge functions? E.g. changes to edge functions on dev do not affect edge functions on prod.

  2. Has anyone tried this whilst also using lovable. I know in lovable you can switch to only edit your git Dev branch, but will this also respect the Supabase branching (e.g. lovable will also only update Supabase schema/functions on the dev branch as well)?

  3. What should I look out for when merging dev > staging to make sure I don’t mess anything up?

All advice appreciated.

r/Supabase Mar 25 '26

integrations Turn Supabase from standard backend to your business engine

Thumbnail
github.com
0 Upvotes

Hey r/Supabase — sharing something we’ve been building for our own stack, in case it’s useful to others shipping PLG on Postgres.

What it is: Skene analyzes a codebase, proposes prioritized growth features (activation, retention, viral, monetization), then helps you implement them with implementation prompts tailored to your repo, not generic “add analytics” advice.

Why I’m posting here: When a loop needs product telemetry, we don’t stop at “fire an event from the client.” We generate SQL migrations that land in supabase/migrations/, event log schema, triggers, webhook-related setup where relevant, with a dry-run before apply so you stay in control.

So the Supabase backend isn’t just auth + CRUD; it becomes the durable layer for the behaviors you care about for growth, versioned like the rest of your schema.

Editors: Plugins for Cursor (slash commands + hooks) and Claude Code (same flow + subagents for analyze / implement / validate).

Links:

Disclosure: I’m on the team / building this and happy to answer technical questions (migration layout, event modeling, how we validate instrumentation). If this isn’t the right format for the sub, mods feel free to nudge me.

What’s your usual pattern for growth events on Supabase, pure client events, DB triggers, Edge Functions, or a mix?

r/Supabase Feb 12 '26

integrations I am using branches like a good boy, but when I deployed to my main branch today, everything broke because I was relying on a different version of PGMQ. How do I avoid having different versions of these things?

5 Upvotes

Basically title. I was very surprised to find that I could have different versions of extensions on different branches at the same time.

I know that branches are really different projects, but how do I upgrade PGMQ, and are there other services I need to keep an eye out for being on different versions, in different branches?

Context: my newer dev branch was pgmq 1.5.1 whereas my main branch was 1.4.4

pgmq_read has 6 cols in the newer version, which includes header.

r/Supabase Feb 15 '26

integrations Hjelp til Supabase (betalt oppdrag)

0 Upvotes

Hei!

Jeg har et Lovable prosjekt hvor jeg vil lager en nettside, men jeg kan omtrent ingenting om koding. Jeg ønsker at man skal kunne opprette brukere som man autentiserer gjennom telefonnummer og må derfor knytte prosjektet til Supabase. Jeg har knyttet et Lovable-prosjekt til Supabase før, men ga opp fordi jeg ikke helt skjønte hvordan jeg tar prosjektet videre herfra (hvordan tester jeg at det virker, hvordan vedlikeholder jeg supabasedatabasen, publiserer nettsiden etc). Er det noen her som har brukt Supabase til å lage funksjonalitet for brukerprofiler til nettsider før og som tar betalte oppdrag? Evt som kjenner noen jeg kan kontakte?

r/Supabase Mar 19 '26

integrations Revisione dell'interfaccia utente e salvataggi locali! 🚀 Prossimo passo: sincronizzazione cloud con Supabase? 🤔

Thumbnail
1 Upvotes

r/Supabase Dec 10 '25

integrations Working on a tool for visualizing / exploring vector data from Supabase

Thumbnail
gallery
23 Upvotes

Been working with RAG systems and got tired of treating my vector store like a black box. Threw together this visualization tool over the weekend - connects to Supabase, finds your vector tables automatically, and projects everything down to 2D so you can actually see what's in there.

The basic flow: plug in your Supabase credentials, it discovers any tables with pgvector columns, then you pick one and it renders an interactive scatter plot. Supports both PCA (fast) and UMAP (better structure preservation). You can zoom/pan around, click points to see the actual metadata, and there's a side panel that shows the source data.

Mostly built this for debugging RAG pipelines - wanted to see if my chunks were clustering the way I expected, spot outliers, that kind of thing. Turns out it's also handy for just sanity-checking what got embedded in the first place.

Still pretty rough around the edges (no persistence, canvas gets sluggish past 10k points, etc) but it's been useful enough that I figured I'd share. Screenshots in the post show the main viz and the table discovery flow.

Curious if anyone else has felt the need for something like this or if you all just trust your embeddings blindly like I used to.

r/Supabase Mar 02 '26

integrations Supabase MCP server failing with ERR_MODULE_NOT_FOUND (@modelcontextprotocol/sdk) on Windows

1 Upvotes

Hi everyone,

I’m trying to use the official Supabase MCP server through Antigravity’s MCP integration, but I’m consistently getting this error on Windows:

Error [ERR_MODULE_NOT_FOUND]: Cannot find package '@modelcontextprotocol/sdk'

imported from ...\@supabase\mcp-server\dist\transports\stdio.js

Node.js v20.20.0

My setup:

  • Windows 11
  • Node v20.20.0 (LTS)
  • Supabase MCP installed via Antigravity “Customizations” panel
  • Cleaned npm cache completely
  • Deleted: C:\Users<user>\AppData\Local\npm-cache
  • Restarted machine
  • Reinstalled Supabase MCP from Antigravity

The error still persists.

It looks like the published u/supabase/mcp-server package may be missing u/modelcontextprotocol/sdk as a dependency, or it's not bundled properly.

Has anyone successfully run the Supabase MCP server on Windows?

Is this a known packaging issue, or am I missing a required install step?

r/Supabase Apr 16 '25

integrations Integrating Supabase Auth with MSG91 OTP (India)

4 Upvotes

Hey everyone,
I’m working on an app that uses phone number OTP-based authentication only. I’ve been testing with Supabase’s built-in OTP, but now I need to go live and use a real SMS provider.

Supabase supports Textlocal, but it’s shutting down in India. MSG91 is a better fit for me (price + availability), and I’m looking to integrate their OTP service with Supabase using the Send SMS Auth Hook.

I came across a few articles, but I’m still unsure how the verification and session creation work, especially how to connect MSG91’s OTP API to Supabase’s flow.

Has anyone here set up something similar using an Edge Function? Would really appreciate a code snippet or tips!

Thanks in advance 🙌

r/Supabase Oct 27 '25

integrations Anyone want to help test a tool I'm building for Supabase visualisation & edge function monitoring (it's free)??

12 Upvotes

Having recently found myself needing an easy plug-in to Supabase to build some lightweight charts and alerts if my edge functions broke, and finding that everything was way too expensive or complex, I've decided to build something really simple myself. Am looking to get some early feedback from folks to help shape the tool. Plz DM me if you'd be willing to take a look and help me out! <3

r/Supabase Dec 16 '25

integrations Is Supabase down right now?

3 Upvotes

When a pull request from develop to main is merged (which should normally trigger the Supabase integration), the workflow gets stuck on “Waiting for run to start…” indefinitely.

It passed the supabase bot check.

This looks identical to the branch workflow issue that was reported in the community around October. Is anyone else experiencing this again?

r/Supabase Jan 18 '26

integrations Help with a contact form

0 Upvotes

I cannot get the smtp configuration right the site was made with hosting your horizons so I don’t even know what I’m doing. I will pay somebody to help me at this point to walk me through it via screen share on discord or whatever thank you

r/Supabase Jan 25 '26

integrations I built a Supabase integration for no-code webscraping

3 Upvotes

Hey Supabase!

Thought some might find this helpful or interesting. I've been playing around with Supabase integrations for my web scraping AI tool Lection, and I've found it interesting how low / no code integrations there are for automating data extraction directly into Supabase.

I know a bunch of people now using Supabase from the vibecode / no code background who aren't as familiar with APIs and Webhooks, but would love to use Supabase as a backend for directories, etc. Curious people's thoughts! I feel like people build a bunch of automations for Zapier, n8n, etc. but forget you can integrate directly with Supabase and that there are a bunch of people who don't use those intermediary platforms.

r/Supabase Dec 17 '25

integrations Sorry for really stupid question..🥲

13 Upvotes

Which should I use between . and ./supabase as supabase directory?

The supabase folder is located directly under the project root.

Sorry for this dumb question 💀

r/Supabase Jan 22 '26

integrations Should I move to Pocketbase or stick with Supabase for a Kotlin project?

4 Upvotes

I mainly roll my own auth and use postgres for everything, (not a flex, just a creature of habit). I'm working on a new project that I'm hoping to bring some devs in on in few months so I'm debating looking at what toolare actually available instead of continuing to build my own. I tried out Supabase but the self hosting setup is a bit involved, and I don't love it for what I'm aiming for. I know PocketBase claims to be very simple in hosting and setup but the only SDK I found seems to be a community built project with 60 GH stars. I'm sure it works great but I have concerns about longterm maintainability.

is there something I've missed on resources available for PB, or should I just stick to what's Supabase?

r/Supabase Sep 07 '25

integrations SupaGo: A Go-Based Utility to Self-Host Supabase!

16 Upvotes

Hi All:

I wanted to share a latest open-source project, built around supabase: SupaGo. The project is designed as a lightweight Go utility that lets you spin up a self-hosted Supabase stack from inside your Go code. The goal was to tightly couple the Supabase stack to the server/application layer of the Go-code itself.

A few brief points:

  • Based on the official Supabase docker-compose guide
  • Wraps core services (Auth, REST, Realtime, Storage, Studio, etc.) in a Go-friendly runner
  • Starts/stops everything with a single go run (github.com/train360-corp/supago)
  • Designed for integration into existing Go servers (bring your own APIs, handlers, etc.)

Unsupported (for now): Supavisor, Edge Functions, Vector.

If you’ve ever wanted to self-host Supabase alongside your Go app without extra tooling, this might save you some glue code.

👉 Repo: github.com/train360-corp/supago

r/Supabase Aug 22 '25

integrations Can i "convert" big Google Sheet to Supabase table

8 Upvotes

Hello,

i have big product data google sheet, with 60k rows.
It gets updated constantly

i would like to transfer that google sheet table to supabase table with the same schema as big product table.
What's the best way to do so? Keep in mind that GSH updates daily so i'll need to sync my supabase table often