Install
openclaw skills install airtable-recordsBrowse Airtable bases and tables, inspect records, create records, and manage fields, comments, and table actions via the Airtable API. Use this skill when users want to read or write data in Airtable, manage base schemas, or automate record operations.
openclaw skills install airtable-recordsWork with Airtable from chat — browse bases and tables, read and create records, manage fields, comments, and table operations via the Airtable API with OAuth authentication.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Airtable API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Airtable |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Airtable |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Airtable API │
│ (User Chat) │ │ (OAuth) │ │ (Bases/Records)│
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Airtable │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Airtable│
│ File │ │ Auth │ │ Bases │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Airtable again."
# List all accessible bases
clawlink_call_tool --tool "airtable_list_bases" --params '{}'
# Get base schema (tables and fields)
clawlink_call_tool --tool "airtable_get_base_schema" --params '{"base_id": "YOUR_BASE_ID"}'
# List records from a table
clawlink_call_tool --tool "airtable_list_records" --params '{"base_id": "YOUR_BASE_ID", "table_id": "YOUR_TABLE_ID", "max_records": 20}'
All Airtable tool calls are authenticated automatically by ClawLink using the user's connected Airtable account.
No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Airtable API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for airtable in the list.
clawlink_list_tools --integration airtable
Response: Returns the live tool catalog for Airtable.
If Airtable tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration airtable| Tool | Description | Mode |
|---|---|---|
airtable_list_bases | List all Airtable bases accessible to the authenticated user | Read |
airtable_get_base_schema | Get detailed schema for a base including tables and fields | Read |
airtable_create_base | Create a new Airtable base with tables and fields | Write |
airtable_create_table | Add a new table to an existing base | Write |
airtable_update_table | Update table name, description, or date dependency settings | Write |
| Tool | Description | Mode |
|---|---|---|
airtable_list_records | List records from a table with filtering, sorting, and pagination | Read |
airtable_get_record | Retrieve a specific record by its record ID | Read |
airtable_create_records | Create up to 10 new records in a table | Write |
airtable_create_record_from_natural_language | Create a record from a natural language description | Write |
airtable_update_record | Update specific fields of an existing record | Write |
airtable_update_multiple_records | Update up to 10 records with partial field modifications | Write |
airtable_delete_record | Permanently delete a single record | Write |
airtable_delete_multiple_records | Delete up to 10 records in one operation | Write |
| Tool | Description | Mode |
|---|---|---|
airtable_create_field | Add a new field to a table | Write |
airtable_update_field | Update a field's name or description | Write |
| Tool | Description | Mode |
|---|---|---|
airtable_list_comments | List comments on a specific record | Read |
airtable_create_comment | Add a comment to a record, with optional threaded replies | Write |
airtable_update_comment | Update an existing comment's text | Write |
airtable_delete_comment | Delete a comment from a record | Write |
| Tool | Description | Mode |
|---|---|---|
airtable_upload_attachment | Upload a file attachment to a record field (base64-encoded) | Write |
| Tool | Description | Mode |
|---|---|---|
airtable_get_user_info | Get the authenticated user's ID and permission scopes | Read |
clawlink_call_tool --tool "airtable_list_records" \
--params '{
"base_id": "appXXXXXXXXXXXXXX",
"table_id": "tblXXXXXXXXXXXXXX",
"max_records": 20
}'
clawlink_call_tool --tool "airtable_create_records" \
--params '{
"base_id": "appXXXXXXXXXXXXXX",
"table_id": "tblXXXXXXXXXXXXXX",
"records": [
{
"fields": {
"Name": "Alice Johnson",
"Email": "alice@example.com",
"Status": "Active"
}
}
]
}'
clawlink_call_tool --tool "airtable_update_record" \
--params '{
"base_id": "appXXXXXXXXXXXXXX",
"table_id": "tblXXXXXXXXXXXXXX",
"record_id": "recXXXXXXXXXXXXXX",
"fields": {
"Status": "Completed",
"Notes": "Updated via ClawLink"
}
}'
clawlink_call_tool --tool "airtable_create_comment" \
--params '{
"base_id": "appXXXXXXXXXXXXXX",
"table_id": "tblXXXXXXXXXXXXXX",
"record_id": "recXXXXXXXXXXXXXX",
"text": "This record needs review - please check the details."
}'
clawlink_list_integrations to confirm Airtable is connected.clawlink_list_tools --integration airtable to see the live catalog.clawlink_search_tools with a short query and integration airtable.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → search → describe → call │
│ │
│ Example: List bases → Get schema → List records → Show │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → get → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute update │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.app (e.g., appXXXXXXXXXXXXXX). Table IDs start with tbl. Record IDs start with rec.parentCommentId.| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration airtable. |
| Missing connection | Airtable is not connected. Direct the user to https://claw-link.dev/dashboard?add=airtable. |
NOT_FOUND | Base, table, or record does not exist. Check the IDs. |
INVALID_PERMISSIONS | The authenticated user lacks permission for this operation. |
INVALIDArgument | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
RATE_LIMIT_EXCEEDED | Too many requests. Wait and retry. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.airtable.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
