Airtable MCP Server

by felores
Verified

create_field

Create a new field in a table

Input Schema

NameRequiredDescriptionDefault
base_idYesID of the base
fieldYes
table_idYesID of the table

Input Schema (JSON Schema)

{ "properties": { "base_id": { "description": "ID of the base", "type": "string" }, "field": { "properties": { "description": { "description": "Description of the field", "type": "string" }, "name": { "description": "Name of the field", "type": "string" }, "options": { "description": "Field-specific options", "type": "object" }, "type": { "description": "Type of the field", "type": "string" } }, "required": [ "name", "type" ], "type": "object" }, "table_id": { "description": "ID of the table", "type": "string" } }, "required": [ "base_id", "table_id", "field" ], "type": "object" }