MCP Catalogs
Home

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 uses10,239
Score8457
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseDeveloper ToolsOps & Infra
LanguageTypeScriptTypeScript
Last committhis month1 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-chart

For 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 --demo

Claude Desktop Configuration

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "dbhub": {
      "command": "npx",
      "args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.