mcp-server-chart vs zendesk-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | zendesk-mcp-server by reminia | |
|---|---|---|
| Stars | ★ 4,068 | ★ 96 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
zendesk-mcp-server · Summary
A comprehensive MCP server for Zendesk integration with ticket management and knowledge base access.
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
zendesk-mcp-server · Use cases
- Automate customer support ticket management through AI assistants
- Retrieve and analyze support tickets for trend identification
- Draft responses to customer inquiries based on ticket context
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"]
}
}
}zendesk-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/reminia/zendesk-mcp-server.git - Create virtual environment and install dependencies:
uv venv && uv pip install -e . - Copy
.env.exampleto.envand add your Zendesk credentials - Configure in Claude Desktop:
{
"mcpServers": {
"zendesk": {
"command": "uv",
"args": [
"--directory",
"/path/to/zendesk-mcp-server",
"run",
"zendesk"
]
}
}
}Docker Option
- Copy
.env.exampleto.envand fill in your credentials - Build the image:
docker build -t zendesk-mcp-server . - Run with:
docker run --rm --env-file /path/to/.env zendesk-mcp-server