{
"mcpServers": {
"redshift-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Redshift MCP server, but using username and password
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 258 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Search, evaluate, and compare 17,000+ MCP servers — each scored on security, maintenance, and efficiency.
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
MCP server for scanning and remediating hardcoded secrets using GitGuardian’s API. Detect over 500 secret types and prevent credential leaks before code goes public.
Trust infrastructure for AI agents — DIDs, reputation, verifiable credentials, USDC.
MCP Security Weekly
Get CVE alerts and security updates for Redshift Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This repository contains the code for the Redshift MCP server. This MCP server allows you to connect to Redshift cluster and execute SQL queries.
Has been tested up to 100+ rows of output. For larger output, your mileage may vary depending upon the total size of the output.
Note down the path where this directory is located. You will need it to configure the MCP client. For now, it is assumed to be <path_to_redshift_mcp>.
In your MCP configuration file, add the following configuration. If your MCP client supports envFile, you can also add that with these variables and the server would read them from there.
{
"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"
}
}
In case you don't have uv installed, you can install it by following uv installation guide.