Airtable MCP Server

by felores
Verified

update_field

Update a field in a table

Input Schema

NameRequiredDescriptionDefault
base_idYesID of the base
field_idYesID of the field to update
table_idYesID of the table
updatesYes

Input Schema (JSON Schema)

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