Labsco
adiletD logo

Supabase MCP Server

from adiletD

A server for querying and managing data in a Supabase database.

๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Supabase MCP Server

This is a Model Context Protocol (MCP) server that connects to Supabase and allows you to query the feature_suggestions table.

Connecting to AI Tools

Cursor

  1. Open Cursor and navigate to Cursor Settings.
  2. Under the Features tab, tap + Add new MCP server under the MCP Servers section.
  3. Enter the following details:
    • Name: Supabase
    • Type: command
    • Command: npx tsx /path/to/mcp-server.ts
  4. You should see a green active status after the server is successfully connected.

Claude Desktop

  1. Open Claude desktop and navigate to Settings.
  2. Under the Developer tab, tap Edit Config to open the configuration file.
  3. Add the following configuration:
    {
      "mcpServers": {
        "supabase": {
          "command": "npx",
          "args": ["tsx", "/path/to/mcp-server.ts"]
        }
      }
    }
  4. Save the configuration file and restart Claude desktop.

Available Tools

query_feature_suggestions

Query the feature_suggestions table in your Supabase database.

Parameters:

  • limit (number, optional): Maximum number of records to return (default: 100)

Example usage in AI tool:

Can you show me feature suggestions from the database?

Or with a limit:

Can you show me the top 10 feature suggestions?