execute_sql
Run SQL queries on Amazon Redshift clusters via the Redshift MCP Server to explore schemas, execute queries, and collect statistics efficiently.
Instructions
Execute a SQL Query on the Redshift cluster
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | The SQL to Execute |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "The SQL to Execute",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}