npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@r-mcp/sql

v1.0.8

Published

A starter template for building MCP (Model Context Protocol) servers

Downloads

12

Readme

Supabase MCP Server

A Model Context Protocol (MCP) server that provides database and storage capabilities for Supabase.

Features

  • Execute SQL queries on Supabase databases
  • Manage Supabase storage buckets and files
  • Secure connection handling with SSL support
  • Structured response format with row data, field information, and metadata
  • Error handling and connection management

Installation

Prerequisites

  • Node.js and npm/pnpm
  • A Supabase project with connection string

Environment Setup

Create a .env.local file in the project root with one of the following configurations:

Option 1: Management API Mode (Recommended - Bypasses Port 5432)

# Connection mode
DATABASE_MODE=management-api

# Required for management-api mode
SUPABASE_PROJECT_REF=your-project-ref
SUPABASE_ACCESS_TOKEN=your-access-token
SUPABASE_API_URL=https://api.supabase.com

# Required for storage tools
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_SERVICE_KEY=your-service-role-key

How to get your access token:

  1. Go to https://supabase.com/dashboard/account/tokens
  2. Generate a new access token
  3. Copy the token to SUPABASE_ACCESS_TOKEN

Advantages:

  • Works over HTTPS (port 443)
  • No firewall/VPN issues with port 5432
  • Uses official Supabase Management API

Option 2: Direct PostgreSQL Mode (Requires Port 5432 Access)

# Connection mode (or omit this line - defaults to postgres)
DATABASE_MODE=postgres

# Required for postgres mode
SUPABASE_CONNECTION_STRING=your_supabase_connection_string_here

# Required for storage tools
SUPABASE_URL=https://your-project.supabase.co
SUPABASE_SERVICE_KEY=your-service-role-key

Limitations:

  • Requires port 5432 to be accessible
  • May be blocked by corporate firewalls/VPNs

Build and Install

Choose one of the following installation methods:

# Install to all supported applications (Claude Desktop, Cursor, Claude Code)
npm run install-server

# Or install to specific applications
npm run install-desktop  # Claude Desktop only
npm run install-cursor   # Cursor IDE only
npm run install-code     # Claude Code only

The installation script will:

  1. Build the TypeScript code
  2. Make the executable file executable
  3. Update the appropriate MCP configuration files
  4. Include environment variables from .env.local

Usage

Once installed, you can use the various tools in your MCP-enabled application:

  • Tool name: execute-sql
  • Description: Execute SQL queries on Supabase database
  • Parameters:
    • query (string): The SQL query to execute

Example Queries

SELECT * FROM users LIMIT 10;
INSERT INTO posts (title, content) VALUES ('Hello', 'World');
UPDATE users SET last_login = NOW() WHERE id = 1;

Response Format

The tool returns a JSON response with:

  • rowCount: Number of affected/returned rows
  • rows: Array of result rows
  • fields: Array of field metadata (name, dataTypeID)
  • command: SQL command type (SELECT, INSERT, etc.)

Configuration

The server is configured in your MCP client's configuration file:

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Cursor: ~/.cursor/mcp.json
  • Claude Code: ~/.claude.json

Development

# Build the project
npm run build

# Start the server directly
npm start

Security Notes

  • The server uses SSL connections with rejectUnauthorized: false for Supabase compatibility
  • Environment variables are loaded from .env.local and passed securely to the MCP configuration
  • Connection strings should never be committed to version control