everything vs mitre-attack-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mitre-attack-mcp by stoyky | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 安全知识库 / RAG开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mitre-attack-mcp · 概述
MCP服务器提供50+种工具查询MITRE ATT&CK知识库,支持自动生成Navigator图层。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mitre-attack-mcp · 使用场景
- 查询特定恶意软件、战术或技术的详细信息
- 生成ATT&CK Navigator可视化图层进行威胁分析
- 发现威胁行为者与其工具之间的关系
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-everythingmitre-attack-mcp · 安装
安装
要克隆并运行此服务器,您需要在计算机上安装[Git](https://git-scm.com)、[Python](https://www.python.org/)和[PipX](https://github.com/pypa/pipx)。
- 确保已使用官方安装指南安装Git、Python和PipX(适用于Windows/Mac/Linux)
- 使用PipX安装MCP服务器
pipx install git+https://github.com/stoyky/mitre-attack-mcp在Claude AI Desktop中配置
将以下内容添加到您的claude_desktop_config.json文件中:
{
"mcpServers": {
"mitre-attack": {
"command": "mitre-attack-mcp",
"args": []
}
}
}