Overview
Supabase MCP Server is a Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API, allowing AI models and other clients to manage Supabase projects and organizations through a standardized interface.
To use the Supabase MCP Server, add the provided configuration to your Claude Config JSON file, specifying the command and API key for Supabase.
- Project Management: List, create, and delete projects; retrieve project API keys. - Organization Management: List and create organizations; get organization details.
- Automating project management tasks in Supabase.
- Integrating Supabase management into AI applications.
- Streamlining organization management for multiple Supabase projects.
Add to your AI client
Use these steps to connect Supabase MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"joshuarileydev-supabase-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-joshuarileydev-supabase-mcp-server-mcp-mirror"
]
}
}
}FAQ
What is the purpose of the Supabase MCP Server?
It provides a standardized way to manage Supabase projects and organizations programmatically.
How do I install the Supabase MCP Server?
You can install it by adding the specified configuration to your Claude Config JSON file.
Can I manage multiple Supabase projects with this server?
Yes, the server allows you to manage multiple projects and organizations efficiently.