mcp-server-chart vs GreenboneMCP
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | GreenboneMCP by matteocolazilli | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
GreenboneMCP · Summary
MCP server connecting AI to Greenbone/OpenVAS vulnerability management via GMP.
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
GreenboneMCP · Use cases
- AI-assisted vulnerability scanning management
- Automated security report analysis
- Comparing scan results across different vulnerability assessments
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"]
}
}
}GreenboneMCP · Install
Installation
- Clone the repository:
git clone https://github.com/matteocolazilli/GreenboneMCP.git
cd GreenboneMCP- Build the MCP image:
docker build -t greenbonemcp:latest .- Create
.envconfiguration:
cp .env.example .envEdit .env with your credentials and settings.
- Run the server:
docker run --rm -i --env-file <path-to-your-env-file> --name greenbonemcp --volume greenbone-community-edition_gvmd_socket_vol:/run/gvmd greenbonemcp:latestFor Claude Desktop, add to config.json:
{
"mcpServers": {
"greenbone": {
"command": "docker",
"args": ["run", "--rm", "-i", "--env-file", "/path/to/.env", "--volume", "greenbone-community-edition_gvmd_socket_vol:/run/gvmd", "greenbonemcp:latest"]
}
}
}