mcp-server-chart vs mcp-security-hub
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-security-hub by FuzzingLabs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 548 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp-security-hub · Summary
A comprehensive collection of 38 production-ready MCP servers for offensive security tools including Nmap, Nuclei, SQLMap, and more.
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
mcp-security-hub · Use cases
- AI assistants performing vulnerability scans on target systems
- Automated security assessments through natural language commands
- Binary analysis and reverse engineering for malware research
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"]
}
}
}mcp-security-hub · Install
Installation
- Clone the repository:
git clone https://github.com/FuzzingLabs/mcp-security-hub
cd mcp-security-hub- Build all MCP servers:
docker-compose build- Start specific servers:
docker-compose up nmap-mcp nuclei-mcp -d- For Claude Desktop, add to your config:
{
"mcpServers": {
"nmap": {
"command": "docker",
"args": ["run", "-i", "--rm", "--cap-add=NET_RAW", "nmap-mcp:latest"]
},
"nuclei": {
"command": "docker",
"args": ["run", "-i", "--rm", "nuclei-mcp:latest"]
}
}
}