everything vs contrastapi
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | contrastapi by UPinar | |
|---|---|---|
| Stars | ★ 85,748 | ★ 24 |
| 30天用量 | — | — |
| 综合分 | 77 | 45 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
contrastapi · 概述
安全情报 MCP 服务器,提供 53 种工具,包括 CVE/KEV 漏洞、威胁情报、网站扫描和代码安全分析。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
contrastapi · 使用场景
- 安全分析师调查多个 CVE 数据库和 KEV 列表中的漏洞
- AI 代理执行全面的域名和 Web 应用程序安全评估
- 开发人员将威胁情报直接集成到 CI/CD 管道中进行代码安全扫描
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-everythingcontrastapi · 安装
安装 ContrastAPI MCP 服务器
方法 1:MCP 配置
添加到您的 MCP 配置中:
{
"mcpServers": {
"contrastapi": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.contrastcyber.com/mcp/"]
}
}
}方法 2:Python SDK
pip install contrastapi # Python 3.10+方法 3:Node.js SDK
npm install contrastapi # Node 14+