execute_sql
Execute SQL queries on MySQL5.6 databases using a supported MCP server. Supports multiple SQL executions, table and field queries, execution plan analysis, and Chinese-to-pinyin conversion.
Instructions
在MySQL5.6s数据库上执行SQL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | 要执行的SQL语句 |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "要执行的SQL语句",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}