EN DE
← ← Back to Index

airtable

productivity › airtable v1.1.0
Airtable Productivity Database API

Description

Airtable REST API via curl. Records CRUD, filters, upserts.

Relevance to Our Projects

Airtable REST API via curl. Records CRUD, filters, upserts.

SKILL.md Preview

# Airtable — Bases, Tables & Records

Work with Airtable's REST API directly via `curl` using the `terminal` tool. No MCP server, no OAuth flow, no Python SDK — just `curl` and a personal access token.

## Prerequisites

1. Create a **Personal Access Token (PAT)** at https://airtable.com/create/tokens (tokens start with `pat...`).
2. Grant these scopes (minimum):
   - `data.records:read` — read rows
   - `data.records:write` — create / update / delete rows
   - `schema.bases:read` — list bases a

← ← Back to Index