airtable

Perform CRUD operations on Airtable bases and records via curl.

2|7|Updated Jun 19, 2026
One-click install
npx skills add https://github.com/humanerd-drew/opencode-drewgent --skill airtable-humanerd-drew
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: airtable
Source: https://github.com/humanerd-drew/opencode-drewgent/tree/main/skills/productivity/airtable
Command: npx skills add https://github.com/humanerd-drew/opencode-drewgent --skill airtable-humanerd-drew

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill simplifies the process of working with Airtable databases using curl, providing CRUD operations and other essential functionalities without needing an Airtable server or OAuth flow.

Core Features & Use Cases

  • CRUD Operations: Perform Create, Read, Update, and Delete operations on Airtable records via curl.
  • Filters and Sorts: Apply advanced queries with filters, formulas, and sort orders for complex record manipulations.
  • Custom Token Setup: Set up Personal Access Tokens and manage base access lists.
  • JSON Interactions: Send and receive JSON data for detailed interaction with the Airtable API.
  • Use Case: Ideal for users who need to integrate Airtable data into scripts or tools and want to bypass traditional OAuth flows for convenience.

Quick Start

Set up your personal access token and run: curl "https://api.airtable.com/v0/app.../tbl.../rec...?fields=Name,Status" -H "Authorization: Bearer pat_your_token_here" | python3 -m json.tool

Frequently Asked Questions about airtable

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I manage Airtable records using curl?

You can manage Airtable records using curl by sending HTTP requests to the Airtable REST API for Create, Read, Update, and Delete operations. This Skill facilitates curl-based interactions by sending and receiving JSON data directly.

Do I need an OAuth flow to run Airtable CRUD operations from the command line?

No, you do not need an OAuth flow to run Airtable CRUD operations from the command line. This Skill bypasses traditional OAuth by requiring an AIRTABLE_API_KEY or Personal Access Token set with the necessary scopes for your bases.

Can I apply filters and sort orders when querying Airtable via curl?

Yes, you can apply filters and sort orders when querying Airtable via curl. This Skill supports advanced querying capabilities, allowing you to use complex formulas and sort parameters to manipulate specific records.

What is the best way to integrate Airtable data into shell scripts without an MCP server?

The best way to integrate Airtable data into shell scripts without an MCP server is using curl commands with the Airtable REST API. This Skill focuses entirely on command-line use to bypass server requirements and manipulate JSON data.

How do I set up Personal Access Tokens for Airtable API integration?

To set up Personal Access Tokens for Airtable API integration, you configure the token with the necessary base access lists and scopes. This Skill uses this custom token setup to authorize curl requests without requiring an OAuth flow.