execute_sql
Execute SQL queries on OceanBase databases via the MCP Server, enabling AI assistants to securely interact with and manage data through a controlled interface.
Instructions
Execute an SQL query on the OceanBase server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}