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-filesystemdatabase
SQLite
Create, query, and manage SQLite databases.
@modelcontextprotocol/server-sqlitedeveloper-tools
Git
Read and manipulate Git repositories — log, diff, blame, and more.
@modelcontextprotocol/server-gitdeveloper-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" } }}