Back to stacks

Supabase Developer

by Jonathan S

Build Supabase-powered apps with direct DB access, GitHub for code, and Vercel for deployment.

Servers in this stack

database
Supabase

Interact with Supabase projects — database, auth, and storage.

@supabase/mcp-server-supabase
database
PostgreSQL

Query and manage PostgreSQL databases.

@modelcontextprotocol/server-postgres
developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github
developer-tools
Vercel

Deploy and manage Vercel projects and deployments.

developer-tools
Sentry

Retrieve and analyze error reports from Sentry.

@modelcontextprotocol/server-sentry

Copy config

// .vscode/mcp.json
{
"servers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@supabase/mcp-server-supabase"
],
"type": "stdio"
},
"postgresql": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres"
],
"type": "stdio"
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"type": "stdio"
},
"sentry": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sentry"
],
"type": "stdio"
}
}
}