filesystem vs codeprism
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | codeprism by rustic-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
codeprism · Summary
100% AI-generated MCP server providing code intelligence through graph-based analysis of codebases.
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
codeprism · Use cases
- AI-assisted code analysis and refactoring
- Repository exploration and documentation generation
- Code quality and security vulnerability detection
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.
codeprism · Install
# Clone and build
git clone https://github.com/rustic-ai/codeprism
cd codeprism
cargo build --release
# Verify installation
./target/release/codeprism --helpFor Claude Desktop integration:
// ~/.config/claude-desktop/claude_desktop_config.json
{
"mcpServers": {
"codeprism": {
"command": "/path/to/codeprism/target/release/codeprism",
"args": ["--mcp"],
"env": {
"CODEPRISM_PROFILE": "development",
"RUST_LOG": "info"
}
}
}
}