mcp-server-chart vs mcp-server-semgrep
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-semgrep by vetcoders | |
|---|---|---|
| Stars | ★ 4,068 | ★ 28 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsSecurityAI / LLM Tools |
| Language | TypeScript | JavaScript |
| 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.
mcp-server-semgrep · Summary
MCP Server Semgrep integrates Semgrep static analysis with AI assistants for code scanning, security detection, and quality improvements.
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
mcp-server-semgrep · Use cases
- Security vulnerability scanning before deployment
- Code quality improvement and refactoring assistance
- Enforcing coding standards and style consistency in teams
- Educating developers about secure practices
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"]
}
}
}mcp-server-semgrep · Install
Installation
Option 1: Install from Smithery.ai (Recommended)
- Visit [MCP Server Semgrep on Smithery.ai](https://smithery.ai/server/@VetCoders/mcp-server-semgrep)
- Follow the installation instructions to add it to your MCP-compatible clients
Option 2: Install from NPM
npm install -g mcp-server-semgrepIntegration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"semgrep": {
"command": "node",
"args": [
"/your_path/mcp-server-semgrep/build/index.js"
],
"env": {
"SEMGREP_APP_TOKEN": "your_semgrep_app_token",
"MCP_SERVER_SEMGREP_ALLOWED_ROOTS": "/Users/you/projects"
}
}
}
}