mcp-server-chart vs mcpsec
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcpsec by manthanghasadiya | |
|---|---|---|
| Stars | ★ 4,068 | ★ 22 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcpsec · Summary
A security scanner and protocol fuzzer for MCP servers that discovers runtime vulnerabilities through dynamic testing.
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
mcpsec · Use cases
- Security auditing of MCP servers before deployment
- Continuous integration security checks for MCP-based applications
- Fuzz testing to discover zero-day vulnerabilities in MCP implementations
- Compliance testing for MCP server security standards
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"]
}
}
}mcpsec · Install
# Basic installation
pip install mcpsec
# With AI-powered features
pip install mcpsec[ai]
# Via Nix
nix-shell # basic
nix-shell --arg withAll true # all optional depsClaude Desktop Integration
Add to Claude Desktop's claude_desktop_config.json:
{
"mcpServers": {
"mcpsec": {
"command": "python",
"args": ["-m", "mcpsec", "stdio"]
}
}
}