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 uses | — | 10,239 |
| Score | 28 | 84 |
| Official | — | — |
| Categories | DatabaseDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 10 mo ago | this 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
- Clone the repository to your local machine
- Install uv following the [official guide](https://docs.astral.sh/uv/getting-started/installation/)
- 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-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"]
}
}
}