Redshift MCP Server (TypeScript)
@paschmaria
Redshift MCP Server (TypeScript) について
概要はまだありません
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"redshift-js-mcp-server": {
"command": "node",
"args": [
"dist/index.js"
],
"env": {
"DATABASE_URL": "redshift://username:password@hostname:port/database?ssl=true"
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is Redshift MCP Server (TypeScript)?
It is a Model Context Protocol (MCP) server for Amazon Redshift, implemented in TypeScript. It enables LLMs to inspect database schemas and execute read-only queries on a Redshift data warehouse.
How to use Redshift MCP Server (TypeScript)?
Install Node.js 16+, clone the repository, run npm install and npm run build. Set the DATABASE_URL environment variable (e.g., redshift://username:password@hostname:port/database?ssl=true). Start with npm start or node dist/index.js. For Cursor IDE, configure via .cursor/mcp.json; for other MCP clients, use stdio transport configuration.
Key features of Redshift MCP Server (TypeScript)
- Execute read-only SQL queries via the
querytool. - Describe table structure with
describe_table. - Find tables by column name patterns with
find_column. - Provide schema listings, table schemas, sample data, and statistics.
- Automatic redaction of sensitive data (email, phone) in samples.
- Input sanitization and read-only transactions for security.
Use cases of Redshift MCP Server (TypeScript)
- Ask LLMs to list all tables in a given schema.
- Retrieve the structure of a specific table (e.g., customers).
- Find tables containing columns matching a name pattern (e.g., 'email').
- Request sample data from tables for quick inspection.
- Write queries to count orders by status or perform aggregations.
FAQ from Redshift MCP Server (TypeScript)
How does the server ensure security?
It uses read-only transactions, sanitizes inputs to prevent SQL injection, does not expose raw passwords in resource URIs, and automatically redacts sensitive data (email, phone) in sample results.
What are the prerequisites to run this server?
Node.js 16 or higher, TypeScript, access to an Amazon Redshift cluster, basic SQL knowledge, and for Cursor integration, Cursor IDE installed.
「その他」の他のコンテンツ
Awesome-MCP-ZH
yzflyMCP 资源精选, MCP指南,Claude MCP,MCP Servers, MCP Clients
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Codelf
unbugA search tool helps dev to solve the naming things problem.
Production-ready MCP integrations for AI applications
Klavis-AIKlavis AI: MCP integration platforms that let AI agents use tools reliably at any scale
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
コメント