tidb_query
Execute SQL queries on TiDB databases through the MCP server, enabling SELECT, INSERT, UPDATE, and DELETE operations for efficient data management.
Instructions
Execute SQL queries against TiDB
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | The SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "The SQL query to execute",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}