Xano MCP Server

update_table_content

Update content in a table

Input Schema

NameRequiredDescriptionDefault
contentYesUpdated content data
contentIdYesID of the content to update
tableIdYesID of the table

Input Schema (JSON Schema)

{ "properties": { "content": { "additionalProperties": true, "description": "Updated content data", "type": "object" }, "contentId": { "description": "ID of the content to update", "type": "string" }, "tableId": { "description": "ID of the table", "type": "string" } }, "required": [ "tableId", "contentId", "content" ], "type": "object" }