Back to stacks

Full Stack Developer

by Jonathan S

Everything a full stack dev needs: code, repos, database, error tracking, and deployment.

Servers in this stack

file-system
Filesystem

Read and write files on the local filesystem.

@modelcontextprotocol/server-filesystem
developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github
database
PostgreSQL

Query and manage PostgreSQL databases.

@modelcontextprotocol/server-postgres
developer-tools
Sentry

Retrieve and analyze error reports from Sentry.

@modelcontextprotocol/server-sentry
developer-tools
Vercel

Deploy and manage Vercel projects and deployments.

Copy config

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