hexstrike-ai vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
hexstrike-ai by 0x4m4 | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 8,764 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 58 | 84 |
| Official | — | — |
| Categories | SecurityDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
hexstrike-ai · Summary
HexStrike AI is an advanced MCP server that lets AI agents autonomously run 150+ cybersecurity tools for pentesting and security research.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
hexstrike-ai · Use cases
- Automated penetration testing with AI agents selecting optimal tools and strategies
- Bug bounty automation by combining multiple security tools with intelligent analysis
- Security research with AI agents discovering and documenting vulnerabilities
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
hexstrike-ai · Install
Installation
# 1. Clone the repository
git clone https://github.com/0x4m4/hexstrike-ai.git
cd hexstrike-ai
# 2. Create virtual environment
python3 -m venv hexstrike-env
source hexstrike-env/bin/activate # Linux/Mac
# hexstrike-env\Scripts\activate # Windows
# 3. Install Python dependencies
pip3 install -r requirements.txt
# 4. Start the server
python3 hexstrike_server.pyClaude Desktop Integration
Edit ~/.config/Claude/claude_desktop_config.json:
{
"mcpServers": {
"hexstrike-ai": {
"command": "python3",
"args": [
"/path/to/hexstrike-ai/hexstrike_mcp.py",
"--server",
"http://localhost:8888"
],
"description": "HexStrike AI v6.0 - Advanced Cybersecurity Automation Platform",
"timeout": 300,
"disabled": false
}
}
}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"]
}
}
}