productivity
Airtable MCP, CLI, and Lua Integration for AI Agents
Airtable integration docs for AI agents: MCP gateway setup, Airtable CLI commands, Lua API reference, credentials, and function schemas.
7 functions 6 read 1 write Manual OAuth token auth
Airtable for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
airtable- route_slug
airtable- package
airtable- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Airtable CLIHeadless setup and direct function calls. Airtable MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Airtable MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Airtable.
Claude Code Airtable MCP setup for Claude Code. Cursor Airtable MCP setup for Cursor. Codex Airtable MCP setup for Codex. OpenAI Agents Airtable MCP setup for OpenAI Agents SDK. Claude Agent SDK Airtable MCP setup for Claude Agent SDK. Vercel AI SDK Airtable MCP setup for Vercel AI SDK. LangChain Airtable MCP setup for LangChain. LangGraph Airtable MCP setup for LangGraph. CrewAI Airtable MCP setup for CrewAI. MCP clients Airtable MCP setup for Generic MCP Clients.
Airtable CLI Matrix
Use these pages for direct Airtable CLI workflows in scripts, CI, cron, and agent wrappers.
CI Airtable CLI for CI. Cron Jobs Airtable CLI for cron jobs. Shell Scripts Airtable CLI for shell scripts. Headless Automation Airtable CLI for headless automation. Coding Agents Airtable CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
airtable.airtable_list_bases | Read read | 0 | List all Airtable bases the token has access to. |
airtable.airtable_get_base | Read read | 1 | Get details for a single Airtable base by ID. |
airtable.airtable_list_records | Read read | 8 | List records from an Airtable table with optional filtering, sorting, and pagination. |
airtable.airtable_get_record | Read read | 3 | Get a single Airtable record by ID. |
airtable.airtable_create_record | Write write | 3 | Create a new record in an Airtable table. |
airtable.airtable_list_views | Read read | 1 | List views for an Airtable base. |
airtable.airtable_get_current_user | Read read | 0 | Get the profile of the currently authenticated Airtable user. Useful for verifying credentials and displaying account information. |