mcp-server-chart vs mitre-attack-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mitre-attack-mcp by stoyky | |
|---|---|---|
| Stars | ★ 4,068 | ★ 40 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityKnowledge GraphDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mitre-attack-mcp · Summary
MCP server providing 50+ tools for querying MITRE ATT&CK knowledge base with automatic Navigator layer generation.
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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
mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}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": []
}
}
}