mcp-server-chart vs MCP-Kali-Server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | MCP-Kali-Server by Wh0am123 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 688 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 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-Kali-Server · Summary
MCP Kali Server connects AI agents to Linux systems for penetration testing and CTF challenges.
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-Kali-Server · Use cases
- AI-assisted penetration testing with security tools like Nmap and Metasploit
- Solving CTF challenges by executing commands and capturing flags
- Automating reconnaissance and exploitation tasks for bug bounty hunting
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-Kali-Server · Install
Installation
On your Kali Machine
sudo apt install mcp-kali-server
kali-server-mcpFor bleeding edge:
git clone https://github.com/Wh0am123/MCP-Kali-Server.git
cd MCP-Kali-Server
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
./server.pyOn your MCP client machine
For local setup:
./client.py --server http://127.0.0.1:5000For remote setup with SSH tunnel:
ssh -L 5000:localhost:5000 user@LINUX_IP
./client.py --server http://127.0.0.1:5000Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"kali": {
"command": "python3",
"args": ["/path/to/MCP-Kali-Server/client.py"],
"env": {
"MCP_SERVER_URL": "http://localhost:5000"
}
}
}
}