MCP Catalogs
Home

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 uses10,239
Score8449
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Developer ToolsSecurityAI / LLM Tools
LanguageTypeScriptPython
Last committhis month2 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-chart

For 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/chal
docker 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

Default 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"]
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.