atlas-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
atlas-mcp-server by cyanheads | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 475 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 48 | 77 |
| 官方 | — | ✓ |
| 分类 | 知识库 / RAG效率工具开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 10 个月前 | 本月 |
atlas-mcp-server · 概述
基于Neo4j的MCP服务器,为LLM代理实现三层式项目/任务/知识管理系统,支持深度研究功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
atlas-mcp-server · 使用场景
- 管理包含项目、任务和知识组件的多代理复杂工作流
- 研发团队跟踪项目依赖关系和知识库
- 需要关系追踪的结构化任务管理的LLM应用
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
atlas-mcp-server · 安装
安装
- 克隆仓库:
git clone https://github.com/cyanheads/atlas-mcp-server.git
cd atlas-mcp-server- 安装依赖:
npm install- 配置Neo4j(使用Docker启动):
docker-compose up -d在.env文件中更新Neo4j连接详情。
- 构建项目:
npm run buildClaude桌面配置
添加到claude_desktop_config.json:
{
"mcpServers": {
"atlas": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "yourpassword"
}
}
}
}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 中安装。