run_sql_query
Execute read-only SQL SELECT queries on a MySQL database using the Model Context Protocol server for data retrieval and analysis.
Instructions
Executes a read-only SQL query (SELECT statements only) against the MySQL database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL SELECT query to execute. |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL SELECT query to execute.",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}