hana_execute_query
Execute custom SQL queries on the HANA Cloud database using prepared statements, enabling direct data interaction and integration with ML models through the HANA Cloud MCP Server.
Instructions
Execute a custom SQL query against the HANA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameters | No | Optional parameters for the query (for prepared statements) | |
query | Yes | The SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"parameters": {
"description": "Optional parameters for the query (for prepared statements)",
"items": {
"type": "string"
},
"type": "array"
},
"query": {
"description": "The SQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}