Xano MCP Server

add_table_content

Add content to a table

Input Schema

NameRequiredDescriptionDefault
contentYesContent to add to the table
tableIdYesID of the table

Input Schema (JSON Schema)

{ "properties": { "content": { "additionalProperties": true, "description": "Content to add to the table", "type": "object" }, "tableId": { "description": "ID of the table", "type": "string" } }, "required": [ "tableId", "content" ], "type": "object" }