Skip to main content
Glama

Redshift MCP Server

by Moonlight-CL

Redshift MCP 服务器

用于 Amazon Redshift 的模型上下文协议 (MCP) 服务器,使 AI 助手能够与 Redshift 数据库进行交互。

介绍

Redshift MCP Server 是基于 Python 的模型上下文协议 (MCP)实现,提供与 Amazon Redshift 数据库交互的工具和资源。它允许 AI 助手:

  • 列出 Redshift 数据库中的架构和表
  • 检索表 DDL(数据定义语言)脚本
  • 获取表统计信息
  • 执行 SQL 查询
  • 分析表以收集统计信息
  • 获取 SQL 查询的执行计划

安装

先决条件

  • Python 3.13 或更高版本
  • Amazon Redshift 集群
  • Redshift 凭证(主机、端口、用户名、密码、数据库)

从源安装

# Clone the repository git clone https://github.com/Moonlight-CL/redshift-mcp-server.git cd redshift-mcp-server # Install dependencies uv sync

配置

服务器需要以下环境变量才能连接到您的 Redshift 集群:

RS_HOST=your-redshift-cluster.region.redshift.amazonaws.com RS_PORT=5439 RS_USER=your_username RS_PASSWORD=your_password RS_DATABASE=your_database RS_SCHEMA=your_schema # Optional, defaults to "public"

您可以直接设置这些环境变量或使用.env文件。

用法

启动服务器

# Start the server uv run --with mcp python-dotenv redshift-connector mcp mcp run src/redshift_mcp_server/server.py

与人工智能助手集成

要将此服务器与支持 MCP 的 AI 助手一起使用,请将以下配置添加到您的 MCP 设置中:

{ "mcpServers": { "redshift": { "command": "uv", "args": ["--directory", "src/redshift_mcp_server", "run", "server.py"], "env": { "RS_HOST": "your-redshift-cluster.region.redshift.amazonaws.com", "RS_PORT": "5439", "RS_USER": "your_username", "RS_PASSWORD": "your_password", "RS_DATABASE": "your_database", "RS_SCHEMA": "your_schema" } } } }

特征

资源

服务器提供以下资源:

  • rs:///schemas列出数据库中的所有模式
  • rs:///{schema}/tables - 列出特定模式中的所有表
  • rs:///{schema}/{table}/ddl - 获取特定表的 DDL 脚本
  • rs:///{schema}/{table}/statistic - 获取特定表的统计信息

工具

该服务器提供以下工具:

  • execute_sql - 在 Redshift 集群上执行 SQL 查询
  • analyze_table - 分析表以收集统计信息
  • get_execution_plan - 获取 SQL 查询的运行时统计执行计划

示例

列出架构

access_mcp_resource("redshift-mcp-server", "rs:///schemas")

列出模式中的表

access_mcp_resource("redshift-mcp-server", "rs:///public/tables")

获取表 DDL

access_mcp_resource("redshift-mcp-server", "rs:///public/users/ddl")

执行 SQL

use_mcp_tool("redshift-mcp-server", "execute_sql", {"sql": "SELECT * FROM public.users LIMIT 10"})

分析表格

use_mcp_tool("redshift-mcp-server", "analyze_table", {"schema": "public", "table": "users"})

获取执行计划

use_mcp_tool("redshift-mcp-server", "get_execution_plan", {"sql": "SELECT * FROM public.users WHERE user_id = 123"})

发展

项目结构

redshift-mcp-server/ ├── src/ │ └── redshift_mcp_server/ │ ├── __init__.py │ └── server.py ├── pyproject.toml └── README.md

依赖项

  • mcp[cli]>=1.5.0 - 模型上下文协议 SDK
  • python-dotenv>=1.1.0 - 用于从 .env 文件加载环境变量
  • redshift-connector>=2.1.5 - Amazon Redshift 的 Python 连接器
-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

模型上下文协议服务器使 AI 助手能够与 Amazon Redshift 数据库交互,从而实现模式探索、查询执行和统计数据收集。

  1. 介绍
    1. 安装
      1. 先决条件
      2. 从源安装
    2. 配置
      1. 用法
        1. 启动服务器
        2. 与人工智能助手集成
      2. 特征
        1. 资源
        2. 工具
      3. 示例
        1. 列出架构
        2. 列出模式中的表
        3. 获取表 DDL
        4. 执行 SQL
        5. 分析表格
        6. 获取执行计划
      4. 发展
        1. 项目结构
        2. 依赖项

      Related MCP Servers

      • -
        security
        F
        license
        -
        quality
        A comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.
        Last updated -
        3
        1
        TypeScript
      • -
        security
        F
        license
        -
        quality
        A Model Context Protocol server that enables AI assistants to securely interact with Apache IoTDB databases through a controlled interface for listing tables, reading data, and executing SQL queries.
        Last updated -
        Python
        • Apple
      • A
        security
        A
        license
        A
        quality
        A Model Context Protocol server that enables AI assistants to interact with MongoDB Atlas resources through natural language, supporting database operations and Atlas management functions.
        Last updated -
        20
        12,662
        536
        TypeScript
        Apache 2.0
        • Apple
        • Linux
      • A
        security
        A
        license
        A
        quality
        A Model Context Protocol server that provides read-only MySQL database queries for AI assistants, allowing them to execute queries, explore database structures, and investigate data directly from AI-powered tools.
        Last updated -
        3
        703
        7
        TypeScript
        MIT License

      View all related MCP servers

      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/Moonlight-CL/redshift-mcp-server'

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