filesystem vs crash-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | crash-mcp by nikkoxgonzales | |
|---|---|---|
| Stars | ★ 85,748 | ★ 69 |
| 30d uses | — | — |
| Score | 77 | 45 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
crash-mcp · Summary
CRASH is an MCP server for structured reasoning with step validation, branching, and confidence tracking.
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
crash-mcp · Use cases
- Complex multi-step problem solving in software development
- System design with multiple architectural considerations
- Debugging requiring systematic investigation
- Code analysis and optimization
- Tasks requiring tracking of confidence levels
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.
crash-mcp · Install
npm install crash-mcpOr use directly with npx:
npx crash-mcpQuick Setup
Most MCP clients use this JSON configuration:
{
"mcpServers": {
"crash": {
"command": "npx",
"args": ["-y", "crash-mcp"]
}
}
}Configuration by Client
| Client | Setup Method | |--------|-------------| | **Claude Code** | claude mcp add crash -- npx -y crash-mcp | | **Cursor** | Add to ~/.cursor/mcp.json | | **VS Code** | Add to settings JSON under mcp.servers | | **Claude Desktop** | Add to claude_desktop_config.json | | **Windsurf** | Add to MCP config file | | **JetBrains** | Settings > Tools > AI Assistant > MCP | | **Others** | Use standard MCP JSON config above |