/redshift | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
redshift_create_table | Create a new table in Amazon Redshift |
redshift_delete_data | Delete data from an Amazon Redshift table |
redshift_describe_table | Get table structure and column information for an Amazon Redshift table |
redshift_execute_query | Execute a SQL query on Amazon Redshift |
redshift_get_database_info | Get Amazon Redshift connection metadata including host, port, database name, and SSL status |
redshift_insert_data | Insert data into an Amazon Redshift table |
redshift_list_tables | List all tables in the Amazon Redshift database |
redshift_select_data | Select data from an Amazon Redshift table |
redshift_update_data | Update data in an Amazon Redshift table |
redshift_create_table
Create a new table in Amazon Redshift Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
tableName | string | Yes | — | Name of the table to create |
columns | array | Yes | — | Table column definitions |
redshift_delete_data
Delete data from an Amazon Redshift table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
table | string | Yes | — | Table name |
where | string | Yes | — | WHERE clause to identify rows to delete |
whereParams | array | No | — | Parameters for WHERE clause |
redshift_describe_table
Get table structure and column information for an Amazon Redshift table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
table | string | Yes | — | Table name to describe |
redshift_execute_query
Execute a SQL query on Amazon Redshift Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | SQL query to execute |
parameters | array | No | — | Query parameters for parameterized queries |
redshift_get_database_info
Get Amazon Redshift connection metadata including host, port, database name, and SSL statusredshift_insert_data
Insert data into an Amazon Redshift table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
table | string | Yes | — | Table name |
data | object | Yes | — | Data to insert as key-value pairs |
redshift_list_tables
List all tables in the Amazon Redshift databaseredshift_select_data
Select data from an Amazon Redshift table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
table | string | Yes | — | Table name |
columns | array | No | — | Columns to select (defaults to all) |
where | string | No | — | WHERE clause conditions |
whereParams | array | No | — | Parameters for WHERE clause |
orderBy | string | No | — | ORDER BY clause |
limit | number | No | — | LIMIT number of results |
offset | number | No | — | OFFSET for pagination |
redshift_update_data
Update data in an Amazon Redshift table Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
table | string | Yes | — | Table name |
data | object | Yes | — | Data to update as key-value pairs |
where | string | Yes | — | WHERE clause |
whereParams | array | No | — | Parameters for WHERE clause |

