mcp-server-chart vs aks-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | aks-mcp by Azure | |
|---|---|---|
| Stars | ★ 4,068 | ★ 132 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| 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.
aks-mcp · Summary
Azure's AKS-MCP server enables AI assistants to interact with Azure Kubernetes Service clusters through MCP protocol.
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
aks-mcp · Use cases
- AI-powered AKS cluster management and operations
- Automated troubleshooting and diagnostics of Kubernetes clusters
- Multi-cluster fleet management through AI assistants
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"]
}
}
}aks-mcp · Install
Installation
- Install prerequisites:
- Azure CLI - Go (for building from source)
- Install the server:
go install github.com/Azure/aks-mcp@latest- Configure Claude Desktop:
{
"mcpServers": {
"aks-mcp": {
"command": "aks-mcp",
"args": ["--transport", "stdio", "--access-level", "readwrite"]
}
}
}