Skip to content

Airtable nodes

Tools for managing Airtable records.  These nodes are also served as MCP tools on the airtable MCP server. Back to the full node reference.

Airtable Create Record

airtable_create_record · natural-language configurable · 1 credit on Cloud

Create a new record in an Airtable base.

Credential: Airtable (API key)

Parameters

FieldTypeRequiredDescription
baseIdstringIdentifier of the Airtable base.
fieldsstringJSON string containing the fields and values for the new record.
tableIdstringIdentifier or name of the Airtable table.

Output

Returns a list of records — reference fields downstream as $<node>.id.

FieldTypeDescription
idstringIdentifier of the newly created record.
statusbooleanWhether the record was created successfully.

Airtable List Records

airtable_list_records · natural-language configurable · read-only · idempotent · 1 credit on Cloud

List records from an Airtable base.

Credential: Airtable (API key)

Parameters

FieldTypeRequiredDescription
baseIdstringIdentifier of the Airtable base.
maxRecordsnumberMaximum number of records to return. Default: 100.
tableIdstringIdentifier or name of the Airtable table.

Output

Returns a list of records — reference fields downstream as $<node>.createdTime.

FieldTypeDescription
createdTimestringTimestamp of when the record was created.
fieldsobjectField values of the Airtable record.
idstringIdentifier of the Airtable record.