mcp-guardian vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
mcp-guardian by eqtylab | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 199 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 安全开发者工具可观测性 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 9 个月前 | 本月 |
mcp-guardian · 概述
MCP Guardian 是一个用于 MCP 服务器的安全和管理代理,提供实时控制和监控功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-guardian · 使用场景
- 监控和批准 MCP 工具调用在执行前的安全性
- 管理和切换多个 MCP 服务器配置
- 记录和审计所有 MCP 服务器活动以实现合规性和调试
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-guardian · 安装
安装
Linux/macOS
- 安装 nix:https://nixos.org/download/
- 启用 nix flakes:
``bash sudo sh -c 'echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf' ``
- 进入开发环境:
``bash nix develop ``
- 构建项目:
``bash just build-release ``
Windows
- 安装支持符号链接的 git
- 安装 rustup:https://www.rust-lang.org/tools/install
- 安装 nodejs
- 安装 yarn:
npm install --global yarn - 安装 Visual Studio 并安装 C++ 开发包
- 安装 just:
cargo install just - 构建项目:
``bash just build-release ``
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