mcp-server-chart vs tiger-cli
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | tiger-cli by timescale | |
|---|---|---|
| Stars | ★ 4,068 | ★ 108 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
tiger-cli · Summary
Command-line interface for Tiger Cloud with MCP server for AI assistants to manage Postgres services and execute queries.
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
tiger-cli · Use cases
- AI assistants like Claude Code managing PostgreSQL services through Tiger Cloud
- Developers executing SQL queries on remote databases via MCP integration
- Automating database service lifecycle operations with AI coding tools
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"]
}
}
}tiger-cli · Install
Installation
Install Tiger CLI using one of the following methods:
Script (macOS/Linux/WSL)
curl -fsSL https://cli.tigerdata.com | shWindows
irm https://cli.tigerdata.com/install.ps1 | iexHomebrew (macOS/Linux)
brew install --cask timescale/tap/tiger-cliMCP Server Setup
After installing Tiger CLI, authenticate and install the MCP server:
tiger auth login
tiger mcp installClaude Desktop Configuration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"tiger": {
"command": "tiger",
"args": [
"mcp",
"start"
]
}
}
}