mcp-server-chart vs awsome_kali_MCPServers
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | awsome_kali_MCPServers by ccq1 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 101 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
awsome_kali_MCPServers · Summary
Collection of MCP servers for Kali Linux providing security tools like Nmap, objdump, and Wireshark through Docker containers.
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
awsome_kali_MCPServers · Use cases
- Security researchers performing network scans and traffic analysis through an MCP client
- Penetration testers analyzing binaries and extracting strings from suspicious files
- Developers automating security testing workflows by integrating Kali tools into their development process
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"]
}
}
}awsome_kali_MCPServers · Install
Installation
- Build the Docker image:
docker build -t kali-mcps:latest .- Configure your MCP client (e.g., Claude Desktop) with:
{
"mcpServers": {
"kali-docker": {
"command": "docker",
"args": ["run", "-i", "kali-mcps:latest"]
}
}
}