mcp-server-chart vs mcp-kubernetes
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-kubernetes by Azure | |
|---|---|---|
| Stars | ★ 4,068 | ★ 57 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsMonitoring |
| 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.
mcp-kubernetes · Summary
An MCP server enabling AI assistants to interact with Kubernetes clusters through kubectl commands.
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-kubernetes · Use cases
- Kubernetes cluster administration through natural language prompts in AI assistants
- Automated troubleshooting of pod and deployment issues using AI
- Scaling and managing Kubernetes resources via conversational AI interfaces
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-kubernetes · Install
Installation Options
Docker
{
"mcpServers": {
"kubernetes": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount",
"type=bind,src=/home/username/.kube/config,dst=/home/mcp/.kube/config",
"ghcr.io/azure/mcp-kubernetes"
]
}
}
}Local Installation
- Install kubectl: https://kubernetes.io/docs/tasks/tools/
- Install helm: https://helm.sh/docs/intro/install/
- Configure your MCP server:
{
"mcpServers": {
"kubernetes": {
"command": "<path of binary 'mcp-kubernetes'>",
"args": ["--transport", "stdio"],
"env": {
"KUBECONFIG": "<your-kubeconfig-path>"
}
}
}
}