Airtable MCP Server

by felores
Verified

create_table

Create a new table in a base

Input Schema

NameRequiredDescriptionDefault
base_idYesID of the base
descriptionNoDescription of the table
fieldsNoInitial fields for the table
table_nameYesName of the new table

Input Schema (JSON Schema)

{ "properties": { "base_id": { "description": "ID of the base", "type": "string" }, "description": { "description": "Description of the table", "type": "string" }, "fields": { "description": "Initial fields for the table", "items": { "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 (e.g., singleLineText, multilineText, number, etc.)", "type": "string" } }, "required": [ "name", "type" ], "type": "object" }, "type": "array" }, "table_name": { "description": "Name of the new table", "type": "string" } }, "required": [ "base_id", "table_name" ], "type": "object" }