get_query_plan
Analyze SQL queries by generating query plans for improved database performance. Optimize execution strategies directly within the Adb MySQL MCP Server.
Instructions
Get the query plan for a SQL query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL query to analyze |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL query to analyze",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}