Axon.MCP.Server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
Axon.MCP.Server by ali-kamali | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 165 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 50 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具知识库 / RAG | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
Axon.MCP.Server · 概述
将代码库转化为智能知识库,为 Cursor 和 AntiGravity 等 AI IDE 提供语义分析和向量搜索功能的 MCP 服务器。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
Axon.MCP.Server · 使用场景
- 为 Cursor 和 Google AntiGravity 提供 AI IDE 集成,实现智能代码辅助
- 对企业级代码库进行语义搜索和分析,适用于大型仓库
- 为开发团队自动生成架构可视化和依赖映射
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
Axon.MCP.Server · 安装
使用 Docker 快速开始
# 克隆仓库
git clone https://github.com/ali-kamali/Axon.MCP.Server.git
cd axon.mcp.server
# 复制环境模板
cp .env.example .env
# 编辑 .env 文件添加您的凭证
# 设置 GITLAB_TOKEN 或 AZUREDEVOPS_PASSWORD
# 设置 ADMIN_API_KEY 和 ADMIN_PASSWORD
# 启动所有服务
make docker-up
# 运行数据库迁移
make migrateClaude Desktop 配置
添加到 claude_desktop_config.json:
{
"mcpServers": {
"axon": {
"command": "python",
"args": ["-m", "uvicorn", "axon_mcp_server.main:app", "--host", "0.0.0.0", "--port", "8001"],
"env": {
"AXON_ADMIN_API_KEY": "your-api-key"
}
}
}
}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 中安装。