wordpress_execute_sql
Execute SQL queries (SELECT, SHOW, DESCRIBE, EXPLAIN) to retrieve and analyze WordPress database information for site management and troubleshooting.
Instructions
Execute SQL query (SELECT, SHOW, DESCRIBE, EXPLAIN only for safety)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}