Unla vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Unla by AmoyLab | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 2,113 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 54 | 84 |
| Official | — | — |
| Categories | Ops & InfraDeveloper ToolsAI / LLM Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
Unla · Summary
Unla is a lightweight gateway service that transforms existing MCP Servers and APIs into MCP endpoints without code changes.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
Unla · Use cases
- Convert legacy REST APIs to MCP Servers without code changes
- Proxy existing MCP services through a centralized gateway
- Provide multi-tenant support and session persistence for MCP endpoints
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
Unla · Install
Quick Install with Docker
# Set environment variables
export APISERVER_JWT_SECRET_KEY="changeme-please-generate-a-random-secret"
export SUPER_ADMIN_USERNAME="admin"
export SUPER_ADMIN_PASSWORD="changeme-please-use-a-secure-password"
# Run the container
docker run -d \
--name unla \
-p 8080:80 \
-p 5234:5234 \
-p 5235:5235 \
-p 5335:5335 \
-p 5236:5236 \
-e ENV=production \
-e TZ=Asia/Shanghai \
-e APISERVER_JWT_SECRET_KEY=${APISERVER_JWT_SECRET_KEY} \
-e SUPER_ADMIN_USERNAME=${SUPER_ADMIN_USERNAME} \
-e SUPER_ADMIN_PASSWORD=${SUPER_ADMIN_PASSWORD} \
--restart unless-stopped \
ghcr.io/amoylab/unla/allinone:latestFor Claude Desktop configuration, add to claude_desktop_config.json:
{
"mcpServers": {
"unla": {
"command": "docker",
"args": ["run", "--rm", "-p", "5235:5235", "ghcr.io/amoylab/unla/allinone:latest"],
"env": {
"APISERVER_JWT_SECRET_KEY": "your-secret-key"
}
}
}
}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"]
}
}
}