write_query
Execute DDL/DML or other StarRocks commands without a ResultSet, enabling direct SQL operations on the StarRocks database through the MCP server interface.
Instructions
Execute a DDL/DML or other StarRocks command that do not have a ResultSet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | SQL to execute |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "SQL to execute",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}