memory vs mitre-attack-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mitre-attack-mcp by stoyky | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | SecurityKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mitre-attack-mcp · Summary
MCP server providing 50+ tools for querying MITRE ATT&CK knowledge base with automatic Navigator layer generation.
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
mitre-attack-mcp · Use cases
- Query detailed information about specific malware, tactics, or techniques
- Generate visual ATT&CK Navigator layers for threat analysis
- Discover relationships between threat actors and their tools
memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .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 · Install
Installation
To clone and run this server, you'll need [Git](https://git-scm.com), [Python](https://www.python.org/), and [PipX](https://github.com/pypa/pipx) installed on your computer.
- Ensure Git, Python, and PipX have been installed using their official respective installation instructions for Windows/Mac/Linux
- Install the MCP Server using PipX
pipx install git+https://github.com/stoyky/mitre-attack-mcpConfigure with Claude AI Desktop
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"mitre-attack": {
"command": "mitre-attack-mcp",
"args": []
}
}
}