[MCP Store] Update Supabase MCP listing to use remote server

Hi Antigravity team/community,

I’m a member of the team that maintains the Supabase MCP Server. We’ve recently observed a large volume of traffic from Antigravity IDE though our [legacy stdio MCP package npmjs. com /package/ @supabase/mcp-server-supabase, likely due to Antigravity’s MCP Store using this configuration for the Supabase listing. We currently recommend clients connect via our [remote MCP server supabase. com/ blog/remote-mcp-server instead. This allows authentication through our OAuth server instead of manually/unsafely adding Personal Access Tokens to the MCP config file.

While Antigravity doesn’t currently seem capable of connecting natively to our remote MCP server with OAuth (tested with the "serverUrl” field), I’ve verified it’s possible to connect through the mcp-remote proxy package.

{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.supabase.com/mcp"
      ]
    }
  }
}

What steps can we take to update the official Supabase listing to use this remote setup instead of the legacy package?

1 Like

YES - please fix this - I just spent a week trying to get this system set up and it has been a nightmare. This is an easy fix and the native store does NOT have the right settings.

I just got this system to work by connecting with Vanilla VS Code and then using those same setting in the MCP file - I use ALL the IDEs and Claude Code and Google Antigravity has by far been the WORST with MCP server connections

Please fix your stuff Google Team

FYI this is the json script that worked:

{

“mcpServers”: {

“supabase”: {

“type”: “http”,

“url”: “https://mcp.supabase.com/mcp?project_ref=\[YOUR PROJECT ID HERE]”

},