execute_sql
Run SQL queries directly on the InterSystems IRIS MCP Server to monitor and manipulate data, ensuring efficient interoperability management.
Instructions
Execute an SQL query on the Server
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | ||
| query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"default": [],
"items": {
"type": "string"
},
"title": "Params",
"type": "array"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "execute_sqlArguments",
"type": "object"
}