Skip to main content
Server path: /redshift | Type: Application | PCID required: Yes

Tools

ToolDescription
redshift_create_tableCreate a new table in Amazon Redshift
redshift_delete_dataDelete data from an Amazon Redshift table
redshift_describe_tableGet table structure and column information for an Amazon Redshift table
redshift_execute_queryExecute a SQL query on Amazon Redshift
redshift_get_database_infoGet Amazon Redshift connection metadata including host, port, database name, and SSL status
redshift_insert_dataInsert data into an Amazon Redshift table
redshift_list_tablesList all tables in the Amazon Redshift database
redshift_select_dataSelect data from an Amazon Redshift table
redshift_update_dataUpdate data in an Amazon Redshift table

redshift_create_table

Create a new table in Amazon Redshift Parameters:
ParameterTypeRequiredDefaultDescription
tableNamestringYesName of the table to create
columnsarrayYesTable column definitions

redshift_delete_data

Delete data from an Amazon Redshift table Parameters:
ParameterTypeRequiredDefaultDescription
tablestringYesTable name
wherestringYesWHERE clause to identify rows to delete
whereParamsarrayNoParameters for WHERE clause

redshift_describe_table

Get table structure and column information for an Amazon Redshift table Parameters:
ParameterTypeRequiredDefaultDescription
tablestringYesTable name to describe

redshift_execute_query

Execute a SQL query on Amazon Redshift Parameters:
ParameterTypeRequiredDefaultDescription
querystringYesSQL query to execute
parametersarrayNoQuery parameters for parameterized queries

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 Parameters:
ParameterTypeRequiredDefaultDescription
tablestringYesTable name
dataobjectYesData to insert as key-value pairs

redshift_list_tables

List all tables in the Amazon Redshift database

redshift_select_data

Select data from an Amazon Redshift table Parameters:
ParameterTypeRequiredDefaultDescription
tablestringYesTable name
columnsarrayNoColumns to select (defaults to all)
wherestringNoWHERE clause conditions
whereParamsarrayNoParameters for WHERE clause
orderBystringNoORDER BY clause
limitnumberNoLIMIT number of results
offsetnumberNoOFFSET for pagination

redshift_update_data

Update data in an Amazon Redshift table Parameters:
ParameterTypeRequiredDefaultDescription
tablestringYesTable name
dataobjectYesData to update as key-value pairs
wherestringYesWHERE clause
whereParamsarrayNoParameters for WHERE clause