Back to stacks

Local Dev Environment

by Jonathan S

Offline-friendly local dev: filesystem, SQLite, Git, and Docker. No cloud required.

Servers in this stack

file-system
Filesystem

Read and write files on the local filesystem.

@modelcontextprotocol/server-filesystem
database
SQLite

Create, query, and manage SQLite databases.

@modelcontextprotocol/server-sqlite
developer-tools
Git

Read and manipulate Git repositories — log, diff, blame, and more.

@modelcontextprotocol/server-git
developer-tools
Docker

Manage Docker containers, images, and volumes.

Copy config

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