MCP Catalogs
Home

redshift-mcp-server vs mcp-server-chart

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

redshift-mcp-server
by amitds1997
mcp-server-chart
by antvis
Stars★ 1★ 4,068
30d uses10,239
Score2884
Official
Categories
DatabaseDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit10 mo agothis month

redshift-mcp-server · Summary

A simple MCP server for executing SQL queries on Amazon Redshift clusters with username/password authentication.

mcp-server-chart · Summary

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

redshift-mcp-server · Use cases

  • Querying Redshift data from AI assistants via MCP
  • Automating data analysis workflows with Redshift integration
  • Non-developer access to Redshift through conversational interfaces

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

redshift-mcp-server · Install

Installation

  1. Clone the repository to your local machine
  2. Install uv following the [official guide](https://docs.astral.sh/uv/getting-started/installation/)
  3. Configure your MCP client with the following settings:
{
  "command": "uv",
  "args": [
    "--directory",
    "<path_to_redshift_mcp>",
    "run",
    "server.py"
  ],
  "env": {
    "REDSHIFT_DB": "<db-name>",
    "REDSHIFT_USER": "<redshift_user>",
    "REDSHIFT_PASSWORD": "<redshift_password>",
    "REDSHIFT_HOST": "<redshift-host-uri>",
    "REDSHIFT_PORT": "5439"
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.