mcp-config vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-config by marcusschiesser | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 64 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
mcp-config · Summary
A CLI tool for easy installation and management of MCP server configurations.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-config · Use cases
- Quickly installing MCP servers without manual configuration
- Managing multiple MCP server configurations across different clients
- Simplifying onboarding for new MCP server users
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-config · Install
Install and run the CLI tool with:
npx mcp-configTo add a specific server:
npx mcp-config <server-name>For development:
git clone <repository-url>
cd mcp-config
npm install
npm run build
npm run startfilesystem · 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.