MCP Catalogs
首页

everything vs Sentinelgate

并排对比,帮你在这两个 MCP server 之间做选择。

everything
by modelcontextprotocol
Sentinelgate
by Sentinel-Gate
Stars★ 85,748★ 25
30天用量
综合分7744
官方
分类
开发者工具AI / LLM 工具其它
安全开发者工具运维基建
实现语言TypeScriptGo
最近提交本月1 个月前

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

Sentinelgate · 概述

SentinelGate 为 AI 代理提供带有策略执行和审计功能的 MCP 代理。

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

Sentinelgate · 使用场景

  • 通过外部内容防止提示注入攻击
  • 在清理操作中阻止破坏性命令
  • 阻止通过 API 调用进行未授权的数据泄露

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

Sentinelgate · 安装

安装

**macOS / Linux:**

curl -sSfL https://raw.githubusercontent.com/Sentinel-Gate/Sentinelgate/main/install.sh | sh

**Windows PowerShell:**

irm https://raw.githubusercontent.com/Sentinel-Gate/Sentinelgate/main/install.ps1 | iex

Claude Desktop 配置

要在 Claude Desktop 中使用,请添加到 config.json:

{
  "mcpServers": {
    "sentinelgate": {
      "command": "sentinelgate",
      "args": ["serve"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。