MCP Catalogs
Home

mcp-server-chart vs postgresql-ssh-mcp

Side-by-side comparison to help you pick between these two MCP servers.

mcp-server-chart
by antvis
postgresql-ssh-mcp
by Zlash65
Stars★ 4,068★ 6
30d uses10,239
Score8439
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
DatabaseDeveloper ToolsSecurity
LanguageTypeScriptTypeScript
Last committhis month5 mo ago

mcp-server-chart · Summary

A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.

postgresql-ssh-mcp · Summary

PostgreSQL MCP server with SSH tunneling for secure database access through bastion hosts.

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

postgresql-ssh-mcp · Use cases

  • Securely connecting to PostgreSQL databases behind bastion hosts for AI assistants
  • Enabling Claude Desktop to query databases without manual SSH tunnel setup
  • Providing database access to ChatGPT through a secure HTTP endpoint

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"]
    }
  }
}

postgresql-ssh-mcp · Install

Claude Desktop (STDIO)

Add to your Claude Desktop config:

{
  "mcpServers": {
    "postgres": {
      "command": "npx",
      "args": ["-y", "@zlash65/postgresql-ssh-mcp"],
      "env": {
        "DATABASE_URI": "postgresql://user:password@localhost:5432/mydb"
      }
    }
  }
}

ChatGPT (HTTP Server)

DATABASE_URI="postgresql://user:pass@localhost:5432/mydb" npx @zlash65/postgresql-ssh-mcp-http

Then configure ChatGPT to connect to the HTTP endpoint.

Comparison generated from public README + GitHub signals. Last updated automatically.