filesystem vs a2a-go
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | a2a-go by TheApeMachine | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30天用量 | — | — |
| 综合分 | 77 | 33 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | AI / LLM 工具开发者工具运维基建 |
| 实现语言 | TypeScript | Go |
| 最近提交 | 本月 | 9 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
a2a-go · 概述
A2A-Go 是一个分布式 AI 框架,实现了 Google 的 A2A 协议,并支持 MCP 互操作。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
a2a-go · 使用场景
- 构建具有专门角色的分布式多智能体 AI 系统
- 跨不同企业工具(GitHub、Azure DevOps、Slack)创建自动化工作流
- 使用 VPN 网络上下文切换实现安全的浏览器自动化
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 中安装。
a2a-go · 安装
安装
从源码安装
git clone https://github.com/theapemachine/a2a-go.git
cd a2a-go
go build -o a2a-go main.go
./a2a-go --help使用 Docker
docker build -t theapemachine/a2a-go:latest .
docker run -it --rm theapemachine/a2a-go:latest ui快速开始
make server # 启动所有服务
make client # 运行终端 UI 客户端Claude Desktop 配置
要在 Claude Desktop 中使用,添加到 claude_desktop_config.json:
{
"mcpServers": {
"a2a-go": {
"command": "docker",
"args": ["run", "-it", "--rm", "theapemachine/a2a-go:latest", "ui"]
}
}
}