Airtable MCP Server

by felores
Verified

update_table

Update a table's schema

Input Schema

NameRequiredDescriptionDefault
base_idYesID of the base
descriptionNoNew description for the table
nameNoNew name for the table
table_idYesID of the table to update

Input Schema (JSON Schema)

{ "properties": { "base_id": { "description": "ID of the base", "type": "string" }, "description": { "description": "New description for the table", "type": "string" }, "name": { "description": "New name for the table", "type": "string" }, "table_id": { "description": "ID of the table to update", "type": "string" } }, "required": [ "base_id", "table_id" ], "type": "object" }