mcp-server-chart vs suse-ai-up
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | suse-ai-up by SUSE | |
|---|---|---|
| Stars | ★ 4,068 | ★ 28 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraAI / LLM ToolsDeveloper 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.
suse-ai-up · Summary
SUSE AI Universal Proxy is a comprehensive platform for managing and proxying MCP servers with secure orchestration across multiple microservices.
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
suse-ai-up · Use cases
- Enterprise AI service orchestration with centralized management
- Multi-tenant MCP server deployment with authentication and security
- AI application development with plugin-based extensibility
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"]
}
}
}suse-ai-up · Install
Installation Options
Helm Installation (Recommended)
- Clone the repository:
git clone https://github.com/suse/suse-ai-up - Navigate to the directory:
cd suse-ai-up - In values.yaml, set:
- service.type: LoadBalancer - auth.method: development (for no auth)
- Install using the helm chart:
``bash helm install suse-ai-up ./charts/suse-ai-up ``
- Access the service at the IP address shown via
kubectl get svc suse-ai-up-service
Local Development
git clone https://github.com/suse/suse-ai-up.git
cd suse-ai-up
go run ./cmd/uniproxy**Claude Desktop Integration:** Add this to your Claude Desktop config.json:
"mcpServers": {
"suse-ai-up": {
"command": "docker",
"args": ["run", "--rm", "-p", "8911:8911", "suse/suse-ai-up"]
}
}