mcp.film

mcp.film / Production Ops / Airtable MCP Server

Airtable MCP Server

OfficialRemoteby Airtablefreemiumverified Aug 12, 2026

Official hosted Airtable MCP: query, create, and update production-tracking bases.

What it does

Airtable's official remote MCP server lets agents search bases, read schemas, filter/sort records, create and update rows, build interface pages, and draft automations — ideal for shot trackers, casting sheets, asset libraries, and budgets. OAuth via Dynamic Client Registration (or a personal access token), and it enforces each user's existing Airtable permissions.

Connect

Remote endpoint (Streamable HTTP)
https://mcp.airtable.com/mcp
Claude Code
claude mcp add --transport http airtable https://mcp.airtable.com/mcp
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.airtable.com/mcp"
      ]
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "airtable": {
      "url": "https://mcp.airtable.com/mcp"
    }
  }
}
Auth: oauth — OAuth browser flow (primary); PATs also supported at https://airtable.com/create/tokens

Tools you'll see

search_baseslist_tables_for_baseget_table_schemalist_records_for_tablesearch_recordscreate_records_for_tableupdate_records_for_tablecreate_table

Field notes

Endpoint and tool names unchanged on re-check. Airtable now ships an official Claude Code plugin — claude plugin install airtable@claude-plugins-official — which bundles the server with skills; the plain claude mcp add form above still works. PAT auth is a manual Authorization: Bearer ${AIRTABLE_PAT} header. Limits that bite: creates cap at 10 records per request, base creation needs Creator+, automations can only be written as drafts (activation is UI-only), development bases return 403, and Enterprise admins may have to allowlist the integration. Airtable's own docs warn that tool names and behaviours may change, so treat the list above as a snapshot. Community stdio alternative: domdomegg/airtable-mcp-server (454 stars, npx airtable-mcp-server with a PAT).

Pairs well with