turbovault vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
turbovault by Epistates | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 126 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphProductivityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Rust | TypeScript |
| Last commit | 1 mo ago | this month |
turbovault · Summary
Rust SDK and MCP server that transforms Obsidian vaults into intelligent knowledge systems with 47 specialized tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
turbovault · Use cases
- Transform an Obsidian vault into an AI-powered knowledge system with search, link analysis, and relationship discovery
- Build custom applications that consume and analyze markdown directories with high-performance Rust SDK
- Manage multiple vaults dynamically with instant context switching and atomic batch operations
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
turbovault · Install
Install TurboVault using Cargo:
# Minimal install (7.0 MB, STDIO only)
cargo install turbovault
# With HTTP server (~8.2 MB)
cargo install turbovault --features http
# With all cross-platform transports (~8.8 MB)
cargo install turbovault --features fullFor Claude Desktop, add to ~/.config/claude/claude_desktop_config.json:
{
"mcpServers": {
"turbovault": {
"command": "/path/to/turbovault",
"args": ["--vault", "/path/to/your/vault", "--profile", "production"]
}
}
}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.