drio
Open app

Supabase MCP Server 🚀

Source

Catalog onlyCatalog onlySTDIO

Overview

Supabase MCP Server is a powerful Model Context Protocol (MCP) server that provides full administrative control over your Supabase PostgreSQL database through Cursor's Composer and Codeium's Cascade.

To use the Supabase MCP Server, clone the repository, install dependencies, build the project, and configure it with your Supabase project details. Then, integrate it with Cursor or Codeium to manage your database using natural language commands.

  • Comprehensive database management tools for table operations, record management, and schema modifications. - Integration with Cursor's Composer for natural language database commands. - Support for Codeium's Cascade for advanced features (available for paying users).
  1. Managing PostgreSQL databases with ease.
  2. Automating database operations through natural language commands.
  3. Integrating with AI tools for enhanced database management.

Add to your AI client

Use these steps to connect Supabase MCP Server 🚀 in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "supabase-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "supabase-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "supabase-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "supabase-mcp-server-quegenx": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "supabase-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "supabase-mcp-server-quegenx": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-supabase-mcp-server-quegenx"
      ]
    }
  }
}