ydb_query
Execute SQL queries on YDB databases using input parameters. Integrate with AI-powered operations and natural language interactions via the YDB MCP server.
Instructions
Run a SQL query against YDB database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | No | ||
sql | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sql": {
"title": "Sql",
"type": "string"
}
},
"required": [
"sql"
],
"title": "queryArguments",
"type": "object"
}