Supabase MCP Server by JoshuaRileyDev
20 score
A Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.
Ranked #5140 out of 5463 indexed tools.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 127
Freshness 1y ago
Issue Health 0%
Stars 50
Platform Breadth 1 platform
Contributors 1
Description Detailed
How to Improve
Freshness high impact
Issue Health high impact
Contributors medium impact
Supported Platforms
From the README
# Supabase MCP Server
A Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.
## Features
### Project Management
- List all projects
- Get project details
- Create new projects
- Delete projects
- Retrieve project API keys
### Organization Management
- List all organizations
- Get organization details
- Create new organizations
## Installation
Add the following to your Claude Config JSON file
```
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"y",
"@joshuarileydev/supabase-mcp-server"
],
"env": {
"SUPABASE_API_KEY": "API_KEY_HERE"
}
}
}
}
``` Read full README on GitHub →