mcp-server-chart vs mcp-k8s
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-k8s by silenceper | |
|---|---|---|
| Stars | ★ 4,068 | ★ 145 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 1 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-k8s · Summary
Go-based MCP server for Kubernetes and Helm operations with granular control permissions.
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-k8s · Use cases
- Interactive Kubernetes resource management through natural language with LLM
- Automated operations scenarios including intelligent assistant for cluster management
- Development and testing support with quick prototype validation
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-k8s · Install
Installation
- **Direct Download**: Download the binary for your platform from the [releases page](https://github.com/silenceper/mcp-k8s/releases)
- **Go Install**:
go install github.com/silenceper/mcp-k8s/cmd/mcp-k8s@latest- **Build from Source**:
git clone https://github.com/silenceper/mcp-k8s.git
cd mcp-k8s
make buildClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"mcp-k8s": {
"command": "/path/to/mcp-k8s",
"args": [
"--kubeconfig",
"/path/to/kubeconfig",
"--enable-create",
"--enable-delete",
"--enable-update",
"--enable-list"
]
}
}
}