mcp-server-chart vs nyxstrike
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | nyxstrike by CommonHuman-Lab | |
|---|---|---|
| Stars | ★ 4,068 | ★ 96 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
nyxstrike · Summary
AI-powered offensive security orchestration engine with MCP integration for automated penetration testing.
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
nyxstrike · Use cases
- Automated penetration testing with AI-driven attack chains
- Security research using LLM-controlled offensive security tools
- Red team exercises with AI-powered reconnaissance and exploitation
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"]
}
}
}nyxstrike · Install
Installation
git clone https://github.com/CommonHuman-Lab/nyxstrike.git
cd nyxstrike
./nyxstrike.sh -a # Setup + start server
./nyxstrike.sh -a -ai # + local AI model (~8.4 GB RAM)
./nyxstrike.sh -a -ai-small # + smaller AI model (~2.5 GB RAM)Claude Desktop Configuration
{
"$schema": "https://schemas claude.ai/desktop-config.json",
"mcpServers": {
"nyxstrike": {
"command": [
"/path/to/nyxstrike/nyxstrike-env/bin/python3",
"/path/to/nyxstrike/nyxstrike_mcp.py",
"--server",
"http://127.0.0.1:8888",
"--profile",
"full"
],
"env": {}
}
}
}