Servidor MCP do Supabase
Servidor MCP do Supabase com funcionalidades de consulta e inserção de dados
Overview
Supabase MCP Server is a Model-Controller-Persistence server that provides a RESTful API for interacting with Supabase.
To use the Supabase MCP Server, clone the repository, install dependencies, configure your Supabase credentials, and start the server locally or deploy it using Smithery.
- Data querying from tables - Specific record retrieval - Data insertion - Data updating
- Building applications that require a backend API for data management.
- Integrating with Supabase for real-time data operations.
- Creating custom endpoints for specific data interactions.
Add to your AI client
Use these steps to connect Servidor MCP do Supabase 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": {
"supabase-mcp-server-flavioaraujosilva": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}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": {
"supabase-mcp-server-flavioaraujosilva": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"supabase-mcp-server-flavioaraujosilva": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"supabase-mcp-server-flavioaraujosilva": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"supabase-mcp-server-flavioaraujosilva": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"supabase-mcp-server-flavioaraujosilva": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase-mcp-server-flavioaraujosilva"
]
}
}
}FAQ
What is the purpose of this server?
It serves as a backend API to interact with Supabase, allowing for data management operations.
How do I deploy the server?
You can deploy it using the Smithery CLI after configuring your environment variables.
Can I run it locally?
Yes! You can run the server locally after setting it up with the provided instructions.