Back to stacks

Mobile Backend Developer

by Jonathan S

Supabase for auth and DB, Stripe for payments, Sentry for crashes, GitHub for code.

Servers in this stack

database
Supabase

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

@supabase/mcp-server-supabase
developer-tools
Stripe

Manage Stripe payments, customers, and subscriptions.

developer-tools
Sentry

Retrieve and analyze error reports from Sentry.

@modelcontextprotocol/server-sentry
developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github
database
PostgreSQL

Query and manage PostgreSQL databases.

@modelcontextprotocol/server-postgres

Copy config

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