mcp-server-chart vs dbhub
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | dbhub by bytebase | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,769 |
| 30d uses | 10,239 | — |
| Score | 84 | 57 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
dbhub · Summary
A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.
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
dbhub · Use cases
- Database exploration and schema inspection for developers
- Secure SQL query execution with safety controls in CI/CD pipelines
- Multi-database management and operations through a unified interface
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"]
}
}
}dbhub · Install
Installation
**Docker:**
docker run --rm --init \ --name dbhub \ --publish 8080:8080 \ bytebase/dbhub \ --transport http \ --port 8080 \ --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**NPM:**
npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**Demo Mode:**
npx @bytebase/dbhub@latest --transport http --port 8080 --demoClaude Desktop Configuration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"dbhub": {
"command": "npx",
"args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
}
}
}