TablesWriteDo not retry automatically
Delete a table field
delete_table_fieldRemove a field from a table. The field is tombstoned and its key is never reused, so the values under it can never resurface under a later field with the same name. Refused for the primary field (designate another first) and for a field a formula or rollup still reads.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tableId | string | required | Table ID |
fieldId | string | required | Field ID — get from get_table |
expectedSchemaVersion | integer | optional | Assert the table schema version you last read. Omit to let the call read it — the write still fails if someone changes the schema in between. |
Example call
The tool call an MCP client sends (required arguments shown with placeholder values).
{"tool": "delete_table_field","arguments": {"tableId": "tableId_123","fieldId": "fieldId_123"}}
Use this tool in
Claude CodeClaude DesktopClaude CoworkChatGPTCursorWindsurfVS Code CopilotOpenClawGeminiHermes Agent
Related Tables tools
List tables
list_tablesList the tables in the workspace (id, name, kind — typed or custom — resource type, fields, row count, schema/revision versions).Get tableget_tableGet one table by id: its full field set (key, label, kind, display format, select options, whether the field is feed-owned and whether it can be written), the fields that form row identity, the promoted primary/date/amount bindings, row count, and its schema badge.Create tablecreate_tableCreate a table in the workspace.Update tableupdate_tableUpdate a table’s METADATA — name, icon, retention policy.