redshift-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
redshift-mcp-server by amitds1997 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 28 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything