mcp-server-chart vs short-url
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | short-url by fengzhongsen | |
|---|---|---|
| Stars | ★ 4,068 | ★ 19 |
| 30d uses | 10,239 | — |
| Score | 84 | 39 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsProductivityCommunication |
| Language | TypeScript | JavaScript |
| Last commit | this month | 5 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
short-url · Summary
A simple open-source URL shortening service with MCP server for AI assistant integration.
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
short-url · Use cases
- AI assistants automatically creating short links when sharing URLs
- Teams using AI chat interfaces to generate shareable links for internal resources
- Developers integrating short link generation into automated workflows
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"]
}
}
}short-url · Install
Installation
Docker (Recommended)
docker compose up -d --buildManual Installation
# Install dependencies
npm install
# Start both frontend and backend
npm start
# Or separately:
npm run start:server # Backend only (port 3001)
npm run start:client # Frontend only (port 3000)Claude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"short-url": {
"command": "npx",
"args": ["-y", "short-mcp-server"],
"env": {
"API_ORIGIN": "http://localhost:3001",
"API_KEY": "YOUR_API_KEY"
}
}
}
}Replace YOUR_API_KEY with your actual API key from the service.