everything vs cve-search_mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | cve-search_mcp by roadwy | |
|---|---|---|
| Stars | ★ 85,748 | ★ 100 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cve-search_mcp · 概述
一个MCP服务器,提供CVE-Search API访问,用于安全漏洞信息查询。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cve-search_mcp · 使用场景
- 安全分析师可在事件响应过程中通过CVE ID快速获取漏洞信息
- AI助手可访问供应商特定的漏洞数据库来回答安全问题
- DevSecOps团队可将漏洞数据集成到自动化安全检查中
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-everythingcve-search_mcp · 安装
安装
- 克隆仓库:
git clone https://github.com/roadwy/cve-search_mcp.git
cd cve-search_mcp- 安装依赖:
uv sync- 添加到MCP客户端配置:
{
"cve-search_mcp": {
"command": "uv",
"args": [
"--directory",
"YOUR_CVE_SEARCH_MCP_DIR_PATH",
"run",
"main.py"
],
"disabled": false,
"autoApprove": []
}
}对于Claude Desktop,将其添加到claude_desktop_config.json:
{
"mcpServers": {
"cve-search": {
"command": "uv",
"args": [
"--directory",
"/path/to/cve-search_mcp",
"run",
"main.py"
]
}
}
}