Airtable
Read and write Airtable records, tables, and views.
requires credentials6 tools
Query and manage Airtable bases from your AI. List records with filters, create new rows, update existing records, and manage table structure.
Credentials
| Name | Label | Required |
|---|---|---|
AIRTABLE_TOKEN | Personal Access Token | required |
Setup
terminal
# 1. Go to airtable.com/create/tokens
# 2. Create a token with data:records:read and data:records:write scopes
conductor plugins setup airtableTools
| Tool | Description | Inputs | Approval |
|---|---|---|---|
airtable_records | List records in a table | baseId, tableId, filterFormula?, sort?, maxRecords? | — |
airtable_record | Get a single record by ID | baseId, tableId, recordId | — |
airtable_create | Create a new record | baseId, tableId, fields | required |
airtable_update | Update a record's fields | baseId, tableId, recordId, fields | required |
airtable_delete | Delete a record | baseId, tableId, recordId | required |
airtable_bases | List accessible bases | — | — |
Tools marked required will prompt the user for approval before execution. These are typically write, delete, or send operations.
Example Prompts
“Show all open tasks in my project tracker”
airtable_records“Add a new customer record to CRM base”
airtable_create