mcp-server-chart vs pentest-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pentest-mcp by DMontgomery40 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 137 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | JavaScript |
| 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.
pentest-mcp · Summary
Professional penetration testing MCP server with nmap, JtR, hashcat, and reconnaissance tools.
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
pentest-mcp · Use cases
- Professional penetration testing engagements with structured reporting
- Network reconnaissance and vulnerability scanning automation
- Password cracking and brute force attacks in authorized environments
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"]
}
}
}pentest-mcp · Install
npm install -g pentest-mcpRun locally (stdio):
pentest-mcpLaunch bundled MCP Inspector:
pentest-mcp inspectorRun over HTTP (recommended):
MCP_TRANSPORT=http MCP_SERVER_HOST=0.0.0.0 MCP_SERVER_PORT=8000 pentest-mcpFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"pentest-mcp": {
"command": "pentest-mcp",
"args": ["stdio"]
}
}
}