get_execution_plan
Analyze SQL query performance by retrieving the actual execution plan with runtime statistics from the Redshift MCP Server.
Instructions
Get actual execution plan with runtime statistics for a SQL query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | The SQL query to analyze |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "The SQL query to analyze",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}