filesystem vs rust-docs-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | rust-docs-mcp by snowmead | |
|---|---|---|
| Stars | ★ 85,748 | ★ 124 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsWeb Scraping |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
rust-docs-mcp · Summary
A comprehensive MCP server providing Rust crate documentation, source code analysis, dependency trees, and module structure for AI agents.
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
rust-docs-mcp · Use cases
- AI agents exploring and understanding new Rust crates for development
- Building Rust applications with AI assistance by providing real-time API documentation
- Analyzing dependency relationships and module structures of Rust projects
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.
rust-docs-mcp · Install
Installation
Quick Install
curl -sSL https://raw.githubusercontent.com/snowmead/rust-docs-mcp/main/install.sh | bashCargo Install
cargo install rust-docs-mcpMCP Configuration
Add to your MCP configuration:
{
"rust-docs": {
"command": "/path/to/rust-docs-mcp",
"transport": "stdio"
}
}