mcp-server-chart vs pwno-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pwno-mcp by pwno-io | |
|---|---|---|
| Stars | ★ 4,068 | ★ 264 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / 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.
pwno-mcp · Summary
MCP server that exposes GDB+pwndbg debugging capabilities for binary research and exploit development.
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
pwno-mcp · Use cases
- Automated binary analysis and vulnerability discovery
- AI-assisted exploit development and testing
- Parallel debugging sessions for security research
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"]
}
}
}pwno-mcp · Install
Installation
Using Docker (Recommended)
mkdir -p ./workspace
cp ./path/to/your/binary ./workspace/chal
chmod +x ./workspace/chaldocker run --rm -p 5500:5500 \
--cap-add=SYS_PTRACE \
--cap-add=SYS_ADMIN \
--security-opt seccomp=unconfined \
--security-opt apparmor=unconfined \
-v "$PWD/workspace:/workspace" \
ghcr.io/pwno-io/pwno-mcp:latestDefault MCP endpoint: http://127.0.0.1:5500/mcp
Claude Desktop Configuration
Add to Claude Desktop's config.json:
"mcpServers": {
"pwno-mcp": {
"command": "docker",
"args": ["run", "--rm", "-p", "5500:5500", "--cap-add=SYS_PTRACE", "--cap-add=SYS_ADMIN", "--security-opt", "seccomp=unconfined", "--security-opt", "apparmor=unconfined", "-v", "$PWD/workspace:/workspace", "ghcr.io/pwno-io/pwno-mcp:latest"]
}
}