filesystem vs nexo
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | nexo by wazionapps | |
|---|---|---|
| Stars | ★ 85,748 | ★ 20 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具知识库 / RAG效率工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
nexo · 概述
NEXO Brain 为 AI 代理提供持久记忆系统,通过语义 RAG 和 150+ MCP 工具扩展其功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
nexo · 使用场景
- 为 AI 助手增强持久记忆和情境感知能力
- 构建具有语义搜索和 RAG 的知识管理系统
- 创建能够随时间学习和适应的个性化 AI 代理
filesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 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 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。
nexo · 安装
安装
NEXO Brain 可以通过 npm 安装:
npm install -g nexo-brain对于 Claude Desktop 集成,将以下内容添加到您的 claude_desktop_config.json:
{
"mcpServers": {
"nexo": {
"command": "nexo",
"args": ["serve"]
}
}
}该系统也可作为 Python 包使用,可独立运行。