delete_matrix_rows
Remove specific data rows from the Knowledge Matrix in Google Sheets. Preview changes first, then confirm to delete rows 3 and above while preserving header rows.
Instructions
Delete rows from Knowledge Matrix with confirmation requirement. First call shows preview, second call with confirm=true executes deletion. Cannot delete header rows (1-2).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | Set to true to actually delete (first call without this shows preview) | |
endRow | Yes | Last row to delete (inclusive) | |
startRow | Yes | First row to delete (must be >= 3) |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"description": "Set to true to actually delete (first call without this shows preview)",
"type": "boolean"
},
"endRow": {
"description": "Last row to delete (inclusive)",
"type": "number"
},
"startRow": {
"description": "First row to delete (must be >= 3)",
"type": "number"
}
},
"required": [
"startRow",
"endRow"
],
"type": "object"
}