Skip to main content
Glama
kartik-augusta

Redshift MCP Server

Redshift MCP Server

This MCP (Model Context Protocol) server provides secure, read-only access to Amazon Redshift databases for use with Claude Desktop and other MCP-compatible clients. It acts as an intelligent bridge, empowering AI assistants to independently navigate, understand, and extract insights directly from your data warehouse.

✨ Key Features

  • 10 Specialized Tools: A full suite of tools for data discovery, metadata extraction, querying, and exporting.

  • Dynamic Configuration: Fully configurable via .env (allowlists, row limits, connection parameters).

  • Transport Modes: Supports both stdio (for local clients like Claude Desktop) and modern streamable-http (Streamable HTTP over /mcp for remote connections).

  • Connection Caching: Efficient connection management with single long-lived health-checked connections to Redshift.

  • Enterprise Security:

    • Strictly read-only SQL validation.

    • Schema allowlisting (restricts AI to pre-approved schemas).

    • Hard caps on query and export row counts to protect database performance.

  • SSH Tunnel Support: Connects seamlessly to private VPC Redshift clusters via an integrated sshtunnel.

Related MCP server: safedb-mcp

πŸ› οΈ MCP Tools Available

Data Discovery & Navigation

  1. get_allowed_schemas: Return the server's schema access configuration (allowlist, default schema, limits).

  2. list_schemas: Discover accessible schemas in the database (filtered by the configured allowlist).

  3. list_tables: List all tables in a schema. Only schemas in the allowlist are accessible.

  4. describe_table: Get column names, data types, nullability, and defaults for a table.

  5. search_columns: Search for columns whose name matches a keyword (case-insensitive) across all tables in allowed schemas.

Data Analysis & Extraction

  1. sample_data: Return a quick sample of rows from a table for data exploration.

  2. table_row_count: Get the exact row count for a table using COUNT(*).

  3. query_data: Run a read-only SELECT query. Automatically wraps and limits results based on server configuration.

  4. explain_query: Show the EXPLAIN plan for a query to understand performance before executing.

  5. export_to_csv: Export query results to CSV format with a higher dedicated row limit (MAX_EXPORT_ROWS).

πŸš€ Setup & Installation

1. Install Dependencies

# Clone the repository
git clone <repository-url>
cd redshift-mcp-server

# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate

# Install dependencies
pip install -r requirements.txt

2. Configure Environment

Copy the example environment file and edit with your credentials:

cp .env.example .env

Edit the .env file to configure your Redshift connection and server limits:

# --- Redshift Connection ---
RS_HOST=your-cluster.region.redshift.amazonaws.com
RS_DB=your_database_name
RS_USER=your_readonly_user
RS_PASS=your_password
RS_PORT=5439

# --- Security & Limits ---
ALLOWED_SCHEMAS=gold_capsaai,report_capsaai
DEFAULT_SCHEMA=gold_capsaai
MAX_ROWS=500
MAX_EXPORT_ROWS=5000

# --- SSH Tunnel (For Private VPCs) ---
SSH_TUNNEL=false
# If true, provide SSH_HOST, SSH_USER, SSH_KEY_FILE, etc.

3. Start the Server

Mode 1: stdio (Default) Best when the MCP Client (e.g. Claude Desktop) is running on the same machine.

python server.py

Mode 2: Streamable HTTP (/mcp) Best for accessing the server remotely via HTTP or tunnels.

# Start Streamable HTTP server on port 8000
python server.py --http --host 0.0.0.0 --port 8000

πŸ”Œ Connecting to the Server

Option A: Local Claude Desktop (stdio)

If your Claude Desktop is running on the same machine as the server, edit your Claude Desktop configuration file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "redshift": {
      "command": "/absolute/path/to/redshift-mcp-server/.venv/bin/python",
      "args": ["/absolute/path/to/redshift-mcp-server/server.py"]
    }
  }
}

Option B: Remote Connection (Streamable HTTP with Authentication)

When exposing the server over HTTP/HTTPS, the server enforces authentication using AWS Cognito OIDC (OAuth 2.1) and/or API Key Bearer Token:

Method 1: Using mcp-remote with OAuth / OIDC or API Key (Recommended for Claude Desktop)

In your Claude Desktop config (claude_desktop_config.json):

With API Key:

{
  "mcpServers": {
    "capsa-mcp": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://<YOUR_IP_OR_DOMAIN>/mcp",
        "--header",
        "Authorization: Bearer <YOUR_MCP_API_KEY>",
        "--transport",
        "http-only"
      ],
      "env": {
        "NODE_TLS_REJECT_UNAUTHORIZED": "0"
      }
    }
  }
}

With AWS Cognito OAuth / OIDC:

{
  "mcpServers": {
    "capsa-mcp": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://<YOUR_IP_OR_DOMAIN>/mcp"
      ],
      "env": {
        "NODE_TLS_REJECT_UNAUTHORIZED": "0"
      }
    }
  }
}

Method 2: Direct HTTP Transport with Headers

{
  "mcpServers": {
    "redshift": {
      "type": "http",
      "url": "https://<YOUR_IP_OR_DOMAIN>/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_MCP_API_KEY_OR_COGNITO_JWT>"
      }
    }
  }
}

πŸ§ͺ Testing & Validation

The repository includes a comprehensive testing suite and diagnostic tools:

  • client.py: A CLI client that runs an end-to-end smoke test against all 10 tools.

  • test_connection.py: Basic connectivity validation.

  • test_restricted_access.py: Ensures schema security restrictions are working properly.

  • monitor_mcp.sh: Production-ready monitoring with auto-restart, health checks, and logging.

πŸ—οΈ Architecture

graph TB
    subgraph "Client Layer"
        CD["Claude Desktop / MCP Client"]
    end
    
    subgraph "MCP Server Layer"
        MCP["FastMCP Server"]
        CONFIG["config.py / .env"]
        VALIDATION["SQL & Schema Validation"]
    end
    
    subgraph "Network Layer"  
        SSH["SSH Tunnel<br/>(Optional)"]
        CONN["Connection Cache"]
    end
    
    subgraph "Database Layer"
        RS["Amazon Redshift"]
        SCHEMA["Allowed Schemas"]
    end
    
    CD -->|"JSON-RPC (stdio/http)"| MCP
    MCP --> CONFIG
    MCP --> VALIDATION
    VALIDATION --> CONN
    CONN --> SSH
    SSH --> RS
    RS --> SCHEMA

πŸ” Security Considerations

  • Read-Only: The _validate_read_only_sql wrapper severely restricts queries to SELECT and EXPLAIN statements.

  • Limits Engine: Double LIMIT syntax bugs are prevented through regex parsing in _apply_limit, guaranteeing large table scans are capped at your .env threshold.

  • Schema Isolation: The AI cannot view or query tables outside the ALLOWED_SCHEMAS comma-separated list.

  • Keep Credentials Safe: Never commit your .env or .json configuration files to version control. They are ignored in .gitignore by default.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

  • Query your org's data in natural language β€” read-only MCP access to SQL, NoSQL, files & warehouses.

  • Query your warehouse or a CSV with Claude/ChatGPT over MCP, governed by table-level ACL + audit.

  • The BigQuery remote MCP server is a fully managed service that uses the Model Context Protocol to connect AI applications and LLMs to BigQuery data sources. It provides secure, standardized tools for AI agents to list datasets and tables, retrieve schemas, generate and execute SQL queries through natural language, and analyze dataβ€”enabling direct access to enterprise analytics data without requiring manual SQL coding.

  • The HubSpot MCP Server acts as a bridge that enables AI assistants and Large Language Models to securely interact with HubSpot CRM data through natural conversation, without requiring users to understand complex API structures. It provides read-only access to standard CRM objects (contacts, companies, deals, tickets, products, invoices, and more) and their associations, secured via OAuth 2.0, allowing AI agents to perform tasks like summarizing deals, fetching company updates, and looking up record changes.

Related MCP Servers

  • F
    license
    Not graded
    quality
    C
    maintenance
    A production-ready server that connects LLMs and AI agents (Claude, ChatGPT) to Amazon Redshift databases with configurable access controls and zero code changes.
    4
    -
  • A
    license
    A
    quality
    C
    maintenance
    Secure MCP server for safe, read-only DB access by AI agents, with SQL guardrails, table allowlists, PII masking, and audit logs
    6
    50
    7
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    A read-only MCP server for Amazon Redshift that leverages column comments for guided data discovery, with slash commands for profiling, exploration, and lineage.
    13
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kartik-augusta/redshift-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server