everything vs rust-mcp-filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | rust-mcp-filesystem by rust-mcp-stack | |
|---|---|---|
| Stars | ★ 85,748 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 77 | 49 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
rust-mcp-filesystem · 概述
高性能的 Rust MCP 服务器,用于异步文件系统操作。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
rust-mcp-filesystem · 使用场景
- AI 应用中的文件系统探索和分析
- 自动化文件整理和批量处理
- 将文件访问集成到 AI 代理工作流中
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingrust-mcp-filesystem · 安装
安装
使用 Shell 脚本
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.sh | sh使用 PowerShell
powershell -ExecutionPolicy Bypass -c "irm https://github.com/rust-mcp-stack/rust-mcp-filesystem/releases/download/v0.4.1/rust-mcp-filesystem-installer.ps1 | iex"使用 Homebrew
brew install rust-mcp-stack/tap/rust-mcp-filesystem使用 Cargo
cargo install rust-mcp-filesystem --locked使用 NPM
npm i -g @rustmcp/rust-mcp-filesystem@latestClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"rust-mcp-filesystem": {
"command": "rust-mcp-filesystem",
"args": []
}
}
}