turbomcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
turbomcp by Epistates | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | File SystemDeveloper ToolsProductivity |
| Language | Rust | TypeScript |
| Last commit | this month | this month |
turbomcp · Summary
Production-ready Rust SDK for MCP with zero-boilerplate macros, modular transport architecture, and WASM support.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
turbomcp · Use cases
- Building Claude Desktop servers with custom tools and resources
- Creating high-performance MCP servers for cloud deployments
- Developing embedded MCP applications with no_std support
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
turbomcp · Install
Installation
Add to Cargo.toml:
[dependencies]
turbomcp = "3.1.3"
tokio = { version = "1", features = ["full"] }Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"calculator": {
"command": "/path/to/your/server",
"args": []
}
}
}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.