MCP Catalogs
Home

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 uses10,239
Score8435
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
SecurityDeveloper ToolsOps & Infra
LanguageTypeScriptPython
Last committhis month2 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-chart

For 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

  1. Clone the repository:
git clone https://github.com/matteocolazilli/GreenboneMCP.git
cd GreenboneMCP
  1. Build the MCP image:
docker build -t greenbonemcp:latest .
  1. Create .env configuration:
cp .env.example .env

Edit .env with your credentials and settings.

  1. 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:latest

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.