filesystem vs mcp-local-dev
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-local-dev by txbm | |
|---|---|---|
| Stars | ★ 85,748 | ★ 28 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 17 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-local-dev · Summary
AI-powered local development environment manager that handles setup, dependency management, and testing through MCP.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
mcp-local-dev · Use cases
- Automated setup of development environments for new repositories
- Running and analyzing test coverage with AI assistance
- Managing complex multi-runtime projects with isolated environments
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
mcp-local-dev · Install
Installation
- Install Claude Desktop from the [MCP quickstart guide](https://modelcontextprotocol.io/quickstart/user)
- Add the following to your Claude Desktop config:
{
"servers": {
"local_dev": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/txbm/mcp-local-dev@main",
"mcp-local-dev"
]
}
}
}