Home/Servers/Supabase MCP Server

Supabase MCP Server

by Supabase Community ยท โญ 1.2k stars ยท updated 2 weeks ago

Interact with Supabase projects via AI. Query databases, manage storage, call edge functions, inspect logs, and manage your Supabase backend through natural language.

83
Very Good

Quality Score Breakdown

maintenance85/100
community82/100
documentation83/100
compatibility82/100

Use Cases

  • โœ“query Supabase DB
  • โœ“manage storage
  • โœ“call edge functions
  • โœ“backend management

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": [
        "-y",
        "@supabase/mcp-server-supabase"
      ],
      "env": {
        "SUPABASE_URL": "https://yourproject.supabase.co",
        "SUPABASE_SERVICE_ROLE_KEY": "YOUR_SERVICE_ROLE_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": [
        "-y",
        "@supabase/mcp-server-supabase"
      ],
      "env": {
        "SUPABASE_URL": "https://yourproject.supabase.co",
        "SUPABASE_SERVICE_ROLE_KEY": "YOUR_SERVICE_ROLE_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "supabase": {
        "command": "npx",
        "args": [
          "-y",
          "@supabase/mcp-server-supabase"
        ],
        "env": {
          "SUPABASE_URL": "https://yourproject.supabase.co",
          "SUPABASE_SERVICE_ROLE_KEY": "YOUR_SERVICE_ROLE_KEY"
        }
      }
    }
  }
}
โ† Back to all servers