Connecting
In the dashboard, open Connectors, find Airtable and press Connect. The key you enter is checked against Airtable before anything is saved, so a key that is refused never becomes a connection that fails later.What you will need
Getting the credential
- Go to Airtable Developer Hub
- Click Create new token
- Give your token a name and description
- Add required scopes:
data.records:read- Read recordsdata.records:write- Create/update recordsschema.bases:read- Read base schemas
- Add access to specific bases you want to use
- Click Create token and copy the generated token
Notes
- Tools take base and table IDs, not names.
list_basesgives the base id (app…) andget_base_schemagives the table ids (tbl…). - A personal access token only reaches the bases you granted it — a missing base is usually a scope, not a bug.
- 5 requests per second per base
- Use batch operations to stay within limits
- Monitor 429 responses and implement backoff