TablesWriteRetry-safe

Update table row

update_table_row

Change one row’s cells. Supply only the fields you are changing — the rest keep their current values. Values are coerced against the field kinds, the row’s identity is recomputed from the MERGED row so a partial edit cannot give it a wrong identity, and anything computed from the edited cells is recomputed or marked for recomputation.

Parameters

ParameterTypeRequiredDescription
tableIdstringrequiredTable ID — get from list_tables
rowIdstringrequiredRow ID — get from query_table_rows
valuesobjectrequiredOnly the fields to change, keyed by field key. Others keep their current value.

Example call

The tool call an MCP client sends (required arguments shown with placeholder values).

{
"tool": "update_table_row",
"arguments": {
"tableId": "tableId_123",
"rowId": "rowId_123",
"values": "value"
}
}

Use this tool in

Related Tables tools