Glide API MCP Server

update_table_row

Update an existing row in a table

Input Schema

NameRequiredDescriptionDefault
appIdYesID of the Glide app
rowIdYesID of the row to update
tableIdYesID of the table
valuesYesNew column values for the row

Input Schema (JSON Schema)

{ "properties": { "appId": { "description": "ID of the Glide app", "type": "string" }, "rowId": { "description": "ID of the row to update", "type": "string" }, "tableId": { "description": "ID of the table", "type": "string" }, "values": { "additionalProperties": true, "description": "New column values for the row", "type": "object" } }, "required": [ "appId", "tableId", "rowId", "values" ], "type": "object" }