supabase-mcp-server
by: JoshuaRileyDev
supabase mcp server
📌Overview
Purpose: To provide programmatic access to the Supabase Management API, enabling AI models and other clients to manage Supabase projects and organizations through a standardized interface.
Overview: The Supabase MCP Server is designed to streamline the management of Supabase projects and organizations, offering a consistent way for developers and AI applications to interact with the Supabase Management API.
Key Features:
-
Project Management: Allows users to efficiently manage their Supabase projects by enabling listing, retrieving details, creating, deleting, and retrieving API keys for projects.
-
Organization Management: Facilitates the management of organizations by providing functionality to list all organizations, retrieve details, and create new organizations.
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"
}
}
}
}