mcp-server-chart vs toolbox
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | toolbox by go-appsec | |
|---|---|---|
| Stars | ★ 4,068 | ★ 24 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
toolbox · Summary
MCP-based application security testing tools that enable collaboration between humans and coding agents via CLI and proxy.
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
toolbox · Use cases
- Collaborative application security testing where humans handle authentication and UI interactions while AI analyzes traffic
- Web application penetration testing with AI assistance for request manipulation and vulnerability detection
- Security validation of specific vulnerability reports by replaying and modifying captured requests
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"]
}
}
}toolbox · Install
Installation
**Via Go:**
go install github.com/go-appsec/toolbox/sectool@latest**Binary Downloads:** Download pre-built binaries for Linux, macOS, Windows (amd64 and arm64) from the [latest release](https://github.com/go-appsec/toolbox/releases).
Setup
- Start the MCP server:
sectool mcp- Configure browser to use proxy (127.0.0.1:8080)
- Install CA certificate from ~/.sectool/ca.pem
Claude Desktop Configuration
{
"mcpServers": {
"sectool": {
"command": "sectool",
"args": ["mcp"]
}
}
}