mcp-servers vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-servers by dunialabs | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6 | ★ 85,748 |
| 30d uses | — | — |
| Score | 40 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
mcp-servers · Summary
A collection of 15+ MCP servers for popular services like Google Workspace, GitHub, Notion, and more.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-servers · Use cases
- AI assistants managing Google Workspace accounts through Gmail, Calendar, Docs, and Sheets
- Automating GitHub repository management and issue tracking through MCP tools
- Integrating AI assistants with design tools like Figma and Canva for creative workflows
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-servers · Install
To install these MCP servers, you'll need to add them to your MCP configuration. For Claude Desktop, update your claude_desktop_config.json:
{
"mcpServers": {
"mcp-bravesearch": {
"command": "node",
"args": ["/path/to/mcp-servers/mcp-bravesearch/dist/index.js"]
},
"mcp-github": {
"command": "node",
"args": ["/path/to/mcp-servers/mcp-github/dist/index.js"]
},
// Add other servers as needed
}
}Most servers can also be run as Docker containers:
docker run -e GITHUB_TOKEN=your_token dunialabs/mcp-github:latestfilesystem · 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.