mcp-server-chart vs mcp-server-unitycatalog
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-server-unitycatalog by ognis1205 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-server-unitycatalog · Summary
Unity Catalog MCP server that provides database functions as tools for AI assistants.
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-server-unitycatalog · Use cases
- AI assistants executing cataloged ML functions
- Automating data preprocessing workflows through AI
- Dynamic function discovery and execution in AI systems
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-server-unitycatalog · Install
Installation
Using uv:
uvx run mcp-server-unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Using Docker:
docker run --rm -i mcp/unitycatalog --uc_server <your_url> --uc_catalog <catalog_name> --uc_schema <schema_name>Configuration with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"unitycatalog": {
"command": "uv",
"args": [
"--directory",
"/<path to your local repository>/mcp-server-unitycatalog",
"run",
"mcp-server-unitycatalog",
"--uc_server",
"<your unity catalog url>",
"--uc_catalog",
"<your catalog name>",
"--uc_schema",
"<your schema name>"
]
}
}
}