mcp-server-chart vs ida-headless-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ida-headless-mcp by zboralski | |
|---|---|---|
| Stars | ★ 4,068 | ★ 115 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ida-headless-mcp · Summary
A headless IDA Pro binary analysis server providing 52 MCP tools for reverse engineering with multi-session concurrency.
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
ida-headless-mcp · Use cases
- Automated binary analysis in reverse engineering workflows
- Security auditing of compiled software binaries
- Integration of IDA Pro capabilities with AI assistants for code analysis
- Malware analysis through AI-assisted reverse engineering
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"]
}
}
}ida-headless-mcp · Install
Installation
- Clone the repository:
``bash git clone <repo-url> cd ida-headless-mcp ``
- Run setup:
``bash make setup `` This automatically sets up idalib, installs Python dependencies, and builds the Go server.
- Start the server:
``bash ./bin/ida-mcp-server `` The server runs on port 17300 by default.
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"ida-headless": {
"url": "http://127.0.0.1:17300/",
"type": "http"
}
}
}Manual Setup
For troubleshooting or custom setup:
./scripts/setup_idalib.sh # Setup idalib
make install-python # Install Python dependencies
make build # Build Go server