MCP Server for OpenMetadata

update_table

Update an existing table

Input Schema

NameRequiredDescriptionDefault
table_dataYesUpdated table data
table_idYesID of the table to update

Input Schema (JSON Schema)

{ "properties": { "table_data": { "description": "Updated table data", "type": "object" }, "table_id": { "description": "ID of the table to update", "format": "uuid", "type": "string" } }, "required": [ "table_id", "table_data" ], "type": "object" }