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
| Field | Type | Required | Description |
|---|---|---|---|
baseId | string | ✓ | Identifier of the Airtable base. |
fields | string | ✓ | JSON string containing the fields and values for the new record. |
tableId | string | ✓ | Identifier or name of the Airtable table. |
Output
Returns a list of records — reference fields downstream as $<node>.id.
| Field | Type | Description |
|---|---|---|
id | string | Identifier of the newly created record. |
status | boolean | Whether 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
| Field | Type | Required | Description |
|---|---|---|---|
baseId | string | ✓ | Identifier of the Airtable base. |
maxRecords | number | Maximum number of records to return. Default: 100. | |
tableId | string | ✓ | Identifier or name of the Airtable table. |
Output
Returns a list of records — reference fields downstream as $<node>.createdTime.
| Field | Type | Description |
|---|---|---|
createdTime | string | Timestamp of when the record was created. |
fields | object | Field values of the Airtable record. |
id | string | Identifier of the Airtable record. |