https://github.com/joshuarileydev/supabase-mcp-server
https://github.com/joshuarileydev/supabase-mcp-server
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshuarileydev/supabase-mcp-server
- Owner: JoshuaRileyDev
- Created: 2024-12-06T19:34:36.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-06T20:03:44.000Z (10 months ago)
- Last Synced: 2025-04-15T06:02:11.420Z (6 months ago)
- Language: JavaScript
- Size: 5.62 MB
- Stars: 34
- Watchers: 1
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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"
}
}
}
}
```