mcp-server-chart vs vulnerable-mcp-servers-lab
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | vulnerable-mcp-servers-lab by appsecco | |
|---|---|---|
| Stars | ★ 4,068 | ★ 256 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
vulnerable-mcp-servers-lab · Summary
A collection of intentionally vulnerable MCP servers for security training and research into common attack vectors.
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
vulnerable-mcp-servers-lab · Use cases
- Security research on MCP server vulnerabilities
- Hands-on training for AI penetration testing
- Developing security tests for AI applications
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"]
}
}
}vulnerable-mcp-servers-lab · Install
Each vulnerable server lives in its own directory with specific installation instructions. To use:
- Clone the repository:
git clone https://github.com/appsecco/vulnerable-mcp-servers-lab.git - Navigate to the specific vulnerable server directory (e.g.,
cd vulnerable-mcp-server-filesystem-workspace-actions) - Follow the README instructions in that directory
For Claude Desktop integration, many servers include a claude_config.json snippet that should be merged into your Claude Desktop configuration. For example:
{
"mcpServers": {
"vulnerable-filesystem": {
"command": "node",
"args": ["index.js"]
}
}
}