airtable-mcp-server

update_table

Update a table's name or description

Input Schema

NameRequiredDescriptionDefault
baseIdYes
descriptionNo
nameNo
tableIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "baseId": { "type": "string" }, "description": { "type": "string" }, "name": { "type": "string" }, "tableId": { "type": "string" } }, "required": [ "baseId", "tableId" ], "type": "object" }