mcp-server-chart vs mcp-server-wazuh
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-wazuh by gbrigandi | |
|---|---|---|
| Stars | ★ 4,068 | ★ 206 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | SecurityDeveloper ToolsMonitoring |
| Language | TypeScript | Rust |
| 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.
mcp-server-wazuh · Summary
Rust-based MCP server for Wazuh SIEM enabling natural language queries to security alerts, vulnerabilities, and system metrics.
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-wazuh · Use cases
- Security alert triage and investigation with natural language queries
- Vulnerability management and patch prioritization across agent infrastructure
- System forensics and incident response combining alerts with process/ports data
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-wazuh · Install
Installation
**Option 1: Download Pre-built Binary (Recommended)**
- Download the binary for your OS from the [Releases page](https://github.com/gbrigandi/mcp-server-wazuh/releases)
- Make it executable (
chmod +x mcp-server-wazuh-linux-amd64) - Add to your PATH for easier access
**Option 2: Docker**
docker pull ghcr.io/gbrigandi/mcp-server-wazuh:latest**Option 3: Build from Source**
git clone https://github.com/gbrigandi/mcp-server-wazuh.git
cd mcp-server-wazuh
cargo build --releaseConfiguration
Configure Claude Desktop with claude_desktop_config.json:
{
"mcpServers": {
"wazuh": {
"command": "/path/to/mcp-server-wazuh",
"args": [],
"env": {
"WAZUH_API_HOST": "your_wazuh_manager_api_host",
"WAZUH_API_PORT": "55000",
"WAZUH_API_USERNAME": "your_wazuh_api_user",
"WAZUH_API_PASSWORD": "your_wazuh_api_password",
"WAZUH_INDEXER_HOST": "your_wazuh_indexer_host",
"WAZUH_INDEXER_PORT": "9200",
"WAZUH_INDEXER_USERNAME": "your_wazuh_indexer_user",
"WAZUH_INDEXER_PASSWORD": "your_wazuh_indexer_password",
"WAZUH_VERIFY_SSL": "false",
"WAZUH_TEST_PROTOCOL": "https",
"RUST_LOG": "info"
}
}
}
}