.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all β†’

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out β†’
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with β™₯ Β· Β© 2026 aaaa.fyi

Independent project Β· real data from public registries

…/alexander-zuev/supabase-mcp-server
home/mcp-servers/alexander-zuev/supabase-mcp-server
alexander-zuev avatar

supabase-mcp-server

byalexander-zuevΒ· 1 MCP server

Installs

351

Stars

830

Forks

105

Category

Backend & APIs

View on GitHub

TL;DR

> πŸŒ… More than 17k installs via pypi and close to 30k downloads on Smithery.ai β€” in short, this was fun! πŸ₯³ > Thanks to everyone who has been using this server for the past few months, and I hope it was useful for you. > Since Supabase has released their own [official MCP server]

How to install supabase-mcp-server?

alexander-zuev/supabase-mcp-server
$git clone https://github.com/alexander-zuev/supabase-mcp-server

Installs into the current project.

β€ΊPrefer a prompt? Paste this to your agent

Install & use

Install supabase-mcp-server by running `git clone https://github.com/alexander-zuev/supabase-mcp-server`, then use it for the current task and follow its documentation at https://github.com/alexander-zuev/supabase-mcp-server.

Files Β· 1

View on GitHub
README.md
1# Query | MCP server for Supabase
2Β 
3> πŸŒ… More than 17k installs via pypi and close to 30k downloads on Smithery.ai β€” in short, this was fun! πŸ₯³
4> Thanks to everyone who has been using this server for the past few months, and I hope it was useful for you.
5> Since Supabase has released their own [official MCP server](https://github.com/supabase-community/supabase-mcp),
6> I've decided to no longer actively maintain this one. The official MCP server is as feature-rich, and many more
7> features will be added in the future. Check it out!
8Β 
9Β 
10<p class="center-text">
11 <strong>Query MCP is an open-source MCP server that lets your IDE safely run SQL, manage schema changes, call the Supabase Management API, and use Auth Admin SDK β€” all with built-in safety controls.</strong>
12</p>
13Β 
14Β 
15<p class="center-text">
16 <a href="https://pypi.org/project/supabase-mcp-server/"><img src="https://img.shields.io/pypi/v/supabase-mcp-server.svg" alt="PyPI version" /></a>
17 <a href="https://github.com/alexander-zuev/supabase-mcp-server/actions"><img src="https://github.com/alexander-zuev/supabase-mcp-server/workflows/CI/badge.svg" alt="CI Status" /></a>
18 <a href="https://codecov.io/gh/alexander-zuev/supabase-mcp-server"><img src="https://codecov.io/gh/alexander-zuev/supabase-mcp-server/branch/main/graph/badge.svg" alt="Code Coverage" /></a>
19 <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.12%2B-blue.svg" alt="Python 3.12+" /></a>
20 <a href="https://github.com/astral-sh/uv"><img src="https://img.shields.io/badge/uv-package%20manager-blueviolet" alt="uv package manager" /></a>
21 <a href="https://pepy.tech/project/supabase-mcp-server"><img src="https://static.pepy.tech/badge/supabase-mcp-server" alt="PyPI Downloads" /></a>
22 <a href="https://smithery.ai/server/@alexander-zuev/supabase-mcp-server"><img src="https://smithery.ai/badge/@alexander-zuev/supabase-mcp-server" alt="Smithery.ai Downloads" /></a>
23 <a href="https://modelcontextprotocol.io/introduction"><img src="https://img.shields.io/badge/MCP-Server-orange" alt="MCP Server" /></a>
24 <a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License" /></a>
25</p>
26Β 
27## Table of contents
28Β 
29<p class="center-text">
30 <a href="#getting-started">Getting started</a> β€’
31 <a href="#feature-overview">Feature overview</a> β€’
32 <a href="#troubleshooting">Troubleshooting</a> β€’
33 <a href="#changelog">Changelog</a>
34</p>
35Β 
36## ✨ Key features
37- πŸ’» Compatible with Cursor, Windsurf, Cline and other MCP clients supporting `stdio` protocol
38- πŸ” Control read-only and read-write modes of SQL query execution
39- πŸ” Runtime SQL query validation with risk level assessment
40- πŸ›‘οΈ Three-tier safety system for SQL operations: safe, write, and destructive
41- πŸ”„ Robust transaction handling for both direct and pooled database connections
42- πŸ“ Automatic versioning of database schema changes
43- πŸ’» Manage your Supabase projects with Supabase Management API
44- πŸ§‘β€πŸ’» Manage users with Supabase Auth Admin methods via Python SDK
45- πŸ”¨ Pre-built tools to help Cursor & Windsurf work with MCP more effectively
46- πŸ“¦ Dead-simple install & setup via package manager (uv, pipx, etc.)
47Β 
48Β 
49## Getting Started
50Β 
51### Prerequisites
52Installing the server requires the following on your system:
53- Python 3.12+
54Β 
55If you plan to install via `uv`, ensure it's [installed](https://docs.astral.sh/uv/getting-started/installation/#__tabbed_1_1).
56Β 
57### PostgreSQL Installation
58PostgreSQL installation is no longer required for the MCP server itself, as it now uses asyncpg which doesn't depend on PostgreSQL development libraries.
59Β 
60However, you'll still need PostgreSQL if you're running a local Supabase instance:
61Β 
62**MacOS**
63```bash
64brew install postgresql@16
65```
66Β 
67**Windows**
68 - Download and install PostgreSQL 16+ from https://www.postgresql.org/download/windows/
69 - Ensure "PostgreSQL Server" and "Command Line Tools" are selected during installation
70Β 
71### Step 1. Installation
72Β 
73Since v0.2.0 I introduced support

Preview

alexander-zuev/supabase-mcp-serveralexander-zuev/supabase-mcp-server

# Query | MCP server for Supabase

> πŸŒ… More than 17k installs via pypi and close to 30k downloads on Smithery.ai β€” in short, this was fun! πŸ₯³

> Thanks to everyone who has been using this server for the past few months, and I hope it was useful for you.

> Since Supabase has released their own [official MCP server](https://github.com/supabase-community/supabase-mcp),

Repoalexander-zuev/supabase-mcp-server
TypeMCP Servers
CategoryBackend & APIs
UpdatedMay 2026
LicenseApache-2.0
First seenJul 26, 2026

Tags

MCPcursormodel-context-protocol

Related

6 picks
Type
  1. tadata-org avatarfastapi_mcpAutomatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integrationMCP ServersNov 202519M12k
  2. ivnvxd avatarmcp-server-odooA Model Context Protocol server for Odoo ERP systemsMCP ServersJul 2026551k349
  3. pantalytics avatarodoo-mcp-proAI connector for Odoo ERP -- connect Claude, ChatGPT, and other AI tools to Odoo via MCP (Model Context Protocol)MCP ServersJul 2026551k65
  4. cap-js avatarmcp-serverModel Context Protocol (MCP) server for AI-assisted development of CAP applications.MCP ServersJul 2026295k105
  5. punitarani avatarfliA Python wrapper for Google Flights APIMCP ServersJul 2026211k3.1k
  6. meilisearch avatarmeilisearch-mcpMCP server for MeilisearchMCP ServersJun 202661k194