Back to stacks
Minimal Starter
by Jonathan S
The essential trio for any project: filesystem, GitHub, and web fetch. Clean and simple.
Servers in this stack
file-system
Filesystem
Read and write files on the local filesystem.
@modelcontextprotocol/server-filesystemdeveloper-tools
GitHub
Interact with GitHub repositories, issues, and pull requests.
@modelcontextprotocol/server-githubweb
Fetch
HTTP fetch tool for reading web content and APIs.
@modelcontextprotocol/server-fetchCopy 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" }, "fetch": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-fetch" ], "type": "stdio" } }}