agentgate vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
agentgate by agentkitai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 27 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具安全 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
agentgate · 概述
用于 AI 的人类参与式审批系统,支持 MCP 集成和基于策略的决策路由。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
agentgate · 使用场景
- AI 代理在向客户发送电子邮件前需要审批
- 自动化系统在生产环境变更前需要人工确认
- 多代理协调系统中,不同团队的行动需要监督
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 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_..."
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything