mcp-server-chart vs VibeShift
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | VibeShift by GroundNG | |
|---|---|---|
| Stars | ★ 4,068 | ★ 67 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
VibeShift · Summary
VibeShift is an MCP server that provides automated security scanning and testing for AI-generated code.
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
VibeShift · Use cases
- Automatically scanning AI-generated code for security vulnerabilities before committing
- Recording automated UI tests from natural language descriptions
- Executing regression tests to catch issues after code changes
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"]
}
}
}VibeShift · Install
Installation
- Clone the repository:
git clone https://github.com/GroundNG/VibeShift - Create and activate a virtual environment:
python -m venv venv && source venv/bin/activate - Install dependencies:
pip install -r requirements.txt - Install Playwright browsers:
patchright install --with-deps - Rename
.env.exampleto.envand add your LLM API key
MCP Configuration
Add this to your MCP config:
{
"mcpServers": {
"VibeShift":{
"command": "uv",
"args": ["--directory","path/to/cloned_repo", "run", "mcp_server.py"]
}
}
}