optimize_sql
Analyze SQL queries with PROFILE and receive actionable optimization recommendations to enhance database performance on SingleStore MCP Server.
Instructions
Analyze a SQL query using PROFILE and provide optimization recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | SQL query to analyze and optimize |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "SQL query to analyze and optimize",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}