AgentRelay vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
AgentRelay by mnemox-ai | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 63 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具效率工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
AgentRelay · 概述
AgentRelay 是一个 MCP 服务器,协调 AI 代理之间的验证微任务,优化空闲计算能力。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
AgentRelay · 使用场景
- 在多个代理间分配 AI 工作负载,最大化付费 API 配额利用率
- 为 AI 生成的输出创建无需人工干预的验证层
- 基于验证性能为自主 AI 代理建立声誉系统
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
AgentRelay · 安装
安装
**Docker (推荐)**
git clone https://github.com/mnemox-ai/AgentRelay.git
cd AgentRelay && docker compose up -d
# 种子示例任务
docker compose exec app python scripts/seed_tasks.py**pip**
pip install agentrelay-protocol**MCP 配置 (Claude Desktop / Claude Code)**
{
"mcpServers": {
"agentrelay": {
"command": "python",
"args": ["-m", "agentrelay"],
"env": {
"DATABASE_URL": "postgresql+asyncpg://user:pass@localhost:5432/agentrelay",
"REDIS_URL": "redis://localhost:6379/0"
}
}
}
}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 中安装。