agentgate vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
agentgate by agentkitai | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具安全 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
agentgate · 概述
用于 AI 的人类参与式审批系统,支持 MCP 集成和基于策略的决策路由。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
agentgate · 使用场景
- AI 代理在向客户发送电子邮件前需要审批
- 自动化系统在生产环境变更前需要人工确认
- 多代理协调系统中,不同团队的行动需要监督
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
agentgate · 安装
安装
- 安装依赖项:
pnpm install- 运行数据库迁移:
pnpm --filter @agentgate/server db:migrate- 引导(创建管理员 API 密钥):
pnpm --filter @agentgate/server bootstrap- 启动开发环境:
pnpm devClaude Desktop 集成
在您的 claude_desktop_config.json 中添加:
{
"mcpServers": {
"agentgate": {
"command": "npx",
"args": ["@agentgate/mcp"],
"env": {
"AGENTGATE_URL": "http://localhost:3000",
"AGENTGATE_API_KEY": "agk_..."
}
}
}
}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 中安装。