MCP Server for OpenMetadata

delete_table

Delete a table

Input Schema

NameRequiredDescriptionDefault
hard_deleteNoWhether to perform a hard delete
recursiveNoWhether to recursively delete children
table_idYesID of the table to delete

Input Schema (JSON Schema)

{ "properties": { "hard_delete": { "default": false, "description": "Whether to perform a hard delete", "type": "boolean" }, "recursive": { "default": false, "description": "Whether to recursively delete children", "type": "boolean" }, "table_id": { "description": "ID of the table to delete", "format": "uuid", "type": "string" } }, "required": [ "table_id" ], "type": "object" }