|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.redshift-mcp-uvx", |
| 4 | + "name": "Amazon Redshift (uvx)", |
| 5 | + "alias": "redshift", |
| 6 | + "description": "Connect to Amazon Redshift clusters and serverless workgroups to discover clusters, explore databases, schemas, tables, and columns, and run read-only SQL queries. Authenticates with standard AWS credentials.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/3299148?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "database" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "redshift", |
| 14 | + "aws", |
| 15 | + "database", |
| 16 | + "sql", |
| 17 | + "data-warehouse", |
| 18 | + "amazon", |
| 19 | + "analytics" |
| 20 | + ], |
| 21 | + "transport": { |
| 22 | + "type": "stdio", |
| 23 | + "command": "uvx", |
| 24 | + "args": [ |
| 25 | + "awslabs.redshift-mcp-server@latest" |
| 26 | + ], |
| 27 | + "env": { |
| 28 | + "AWS_ACCESS_KEY_ID": "${input:AWS_ACCESS_KEY_ID}", |
| 29 | + "AWS_SECRET_ACCESS_KEY": "${input:AWS_SECRET_ACCESS_KEY}", |
| 30 | + "AWS_REGION": "${input:AWS_REGION}" |
| 31 | + }, |
| 32 | + "metadata": { |
| 33 | + "inputs": [ |
| 34 | + { |
| 35 | + "id": "AWS_ACCESS_KEY_ID", |
| 36 | + "label": "AWS Access Key ID", |
| 37 | + "description": "The access key ID for an AWS IAM user or role with access to your Amazon Redshift clusters. Used together with the secret access key to authenticate. Grant only the permissions you want the server to be able to use.", |
| 38 | + "type": "text", |
| 39 | + "required": true, |
| 40 | + "secret": false, |
| 41 | + "placeholder": "<your-aws-access-key-id>", |
| 42 | + "obtain": { |
| 43 | + "url": "https://console.aws.amazon.com/iam/home#/security_credentials", |
| 44 | + "instructions": "1. Sign in to the AWS Console and open the IAM service\n2. Go to Users and select (or create) the IAM user you want to use\n3. Open the 'Security credentials' tab\n4. Under 'Access keys', click 'Create access key'\n5. Copy the Access key ID shown", |
| 45 | + "button_label": "Open IAM Console" |
| 46 | + } |
| 47 | + }, |
| 48 | + { |
| 49 | + "id": "AWS_SECRET_ACCESS_KEY", |
| 50 | + "label": "AWS Secret Access Key", |
| 51 | + "description": "The secret access key paired with the access key ID. Shown only once when the access key is created. Keep it secret; it is stored encrypted in your OS keychain.", |
| 52 | + "type": "text", |
| 53 | + "required": true, |
| 54 | + "secret": true, |
| 55 | + "placeholder": "<your-aws-secret-access-key>", |
| 56 | + "obtain": { |
| 57 | + "url": "https://console.aws.amazon.com/iam/home#/security_credentials", |
| 58 | + "instructions": "1. In the IAM Console, open the user's 'Security credentials' tab\n2. Click 'Create access key' (or use an existing one)\n3. Copy the 'Secret access key' shown at creation time\n4. You cannot retrieve it again later, so store it now", |
| 59 | + "button_label": "Open IAM Console" |
| 60 | + } |
| 61 | + }, |
| 62 | + { |
| 63 | + "id": "AWS_REGION", |
| 64 | + "label": "AWS Region", |
| 65 | + "description": "The AWS region where your Amazon Redshift clusters or serverless workgroups are located (for example us-east-1, eu-west-1, ap-southeast-2).", |
| 66 | + "type": "text", |
| 67 | + "required": true, |
| 68 | + "secret": false, |
| 69 | + "default": "us-east-1", |
| 70 | + "placeholder": "us-east-1" |
| 71 | + } |
| 72 | + ] |
| 73 | + } |
| 74 | + }, |
| 75 | + "auth": { |
| 76 | + "type": "api_key", |
| 77 | + "instructions": "Authenticates with standard AWS credentials. Create an access key for an IAM user or role in the AWS IAM Console (Security credentials > Access keys), then provide the Access Key ID, Secret Access Key, and the region where your Redshift clusters live." |
| 78 | + }, |
| 79 | + "contributor": { |
| 80 | + "name": "AWS Labs", |
| 81 | + "github": "awslabs", |
| 82 | + "url": "https://aws.amazon.com/redshift/" |
| 83 | + }, |
| 84 | + "links": { |
| 85 | + "repository": "https://github.com/awslabs/mcp", |
| 86 | + "homepage": "https://awslabs.github.io/mcp/", |
| 87 | + "documentation": "https://awslabs.github.io/mcp/servers/redshift-mcp-server/" |
| 88 | + }, |
| 89 | + "platforms": [ |
| 90 | + "all" |
| 91 | + ], |
| 92 | + "capabilities": { |
| 93 | + "tools": true, |
| 94 | + "resources": false, |
| 95 | + "prompts": false, |
| 96 | + "read_only_mode": true |
| 97 | + }, |
| 98 | + "changelog_url": "https://github.com/awslabs/mcp/blob/main/src/redshift-mcp-server/CHANGELOG.md" |
| 99 | +} |
0 commit comments