mcp-server-chart vs flux-operator
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | flux-operator by controlplaneio-fluxcd | |
|---|---|---|
| Stars | ★ 4,068 | ★ 628 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Go |
| 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.
flux-operator · Summary
Flux MCP server bridges AI assistants with Kubernetes clusters for GitOps operations via natural language.
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
flux-operator · Use cases
- Analyzing and troubleshooting GitOps deployments through natural language queries
- Managing Flux CD resources and configurations via AI assistants
- Monitoring cluster state and reconciliation status using conversational prompts
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"]
}
}
}flux-operator · Install
Installing Flux MCP Server
The Flux MCP Server is integrated with the Flux Operator. First, install the Flux Operator:
helm install flux-operator oci://ghcr.io/controlplaneio-fluxcd/charts/flux-operator \
--namespace flux-systemThen configure the FluxInstance to include the necessary components. The MCP server is automatically enabled when the operator is installed.
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"flux": {
"command": "npx",
"args": ["@fluxcd/mcp-server"]
}
}
}