mcp-server-chart vs netbox-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | netbox-mcp-server by netboxlabs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 172 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMonitoringOps & Infra |
| Language | TypeScript | Python |
| 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.
netbox-mcp-server · Summary
A well-maintained MCP server for read-only access to NetBox network infrastructure data via LLMs.
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
netbox-mcp-server · Use cases
- Query network device information and status through natural language
- Analyze IP address allocation and utilization across your infrastructure
- Retrieve change history and audit trails for network configuration modifications
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"]
}
}
}netbox-mcp-server · Install
Installation
- Create a read-only API token in NetBox with appropriate permissions
- Install dependencies:
```bash # Using UV (recommended) uv sync
# Or using pip pip install -e . ```
- Run the server:
``bash NETBOX_URL=https://netbox.example.com/ NETBOX_TOKEN=<your-api-token> uv run netbox-mcp-server ``
Claude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"netbox": {
"command": "uv",
"args": [
"--directory",
"/path/to/netbox-mcp-server",
"run",
"netbox-mcp-server"
],
"env": {
"NETBOX_URL": "https://netbox.example.com/",
"NETBOX_TOKEN": "<your-api-token>"
}
}
}
}