memory vs mitre-attack-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
memory by modelcontextprotocol | mitre-attack-mcp by stoyky | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 知识库 / RAGAI / LLM 工具效率工具 | 安全知识库 / RAG开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
memory · 概述
一个实现持久化记忆的 MCP 服务器,使用本地知识图谱让 AI 模型能在聊天间记住用户信息。
mitre-attack-mcp · 概述
MCP服务器提供50+种工具查询MITRE ATT&CK知识库,支持自动生成Navigator图层。
memory · 使用场景
- 通过记住用户偏好、历史和关系来个性化 AI 助手交互
- 构建维护对话历史的上下文感知聊天应用
- 创建在 AI 模型会话间持久化的知识库
mitre-attack-mcp · 使用场景
- 查询特定恶意软件、战术或技术的详细信息
- 生成ATT&CK Navigator可视化图层进行威胁分析
- 发现威胁行为者与其工具之间的关系
memory · 安装
安装
Claude Desktop
添加到你的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
使用一键安装按钮或在 .vscode/mcp.json 中手动配置:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}mitre-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": []
}
}
}