Skip to content
Automation Squad

Ranked roundup · Airtable

Best MCP Server for Airtable

The best MCP server for Airtable is, unusually for this category, the official one. Airtable ships its own hosted server at mcp.airtable.com, included on every plan at no added cost, and in August 2026 it grew past record access into building interface pages and drafting automations — surfaces no community server can reach. That reshapes the field rather than emptying it. domdomegg's airtable-mcp-server, at 456 GitHub stars the most-adopted community option we verified, remains the right pick when you want a local process running on a personal access token you scope yourself. Managed platforms fill out the list: Zapier MCP and Composio both genuinely support Airtable and suit teams that want auth handled for them. We ranked five real options on verifiable criteria only — official vendor support, maintenance recency, adoption, auth model, and documented capability coverage. Nobody paid for placement, and we don't invent benchmarks; every number below comes from the GitHub API or vendor docs, checked September 1, 2026.

Facts checked September 1, 2026 · ranked on verifiable criteria · placement is never for sale

Robert MacKelfresh

By Robert MacKelfresh

Founder, Automation Squad ·

The ranking

  1. Official · Airtable

    Almost everyone. It is the only server that reaches interfaces and automations, and org admins can allowlist or block integrations centrally.

    Read, search, create, and update records; create bases, tables, and fields with schema awareness; build interface pages; set up automations (which land as drafts for manual review); ships two agent skills (airtable-overview, airtable-filters).

    Fully hosted by Airtable at https://mcp.airtable.com/mcp — nothing to install or run; included with every plan at no added cost. · OAuth via pre-built connectors in Claude, ChatGPT, Cursor and other MCP clients; personal access tokens supported for manual configurations. Access is limited to what your Airtable user can already see.

    • Calls count against your plan's standard Airtable API rate limits
    • Batch record creation is capped at 10 records per request
    • Automations land as drafts, and some interface editing and Script actions still require the Airtable UI
    • Closed source — there is no public repo to audit
  2. Developers who want a local, MIT-licensed, auditable server with a token they scope themselves. The most-adopted community option we verified, actively maintained (last push August 11, 2026).

    15 tools: full record CRUD plus search (list_records, search_records, get_record, create_record, update_records, delete_records), schema inspection and editing (list_bases, describe_table, create_table, create_field, update_field), and record comments.

    Self-hosted local process — npx airtable-mcp-server or Docker; optional HTTP transport for remote setups. · Airtable personal access token passed as the AIRTABLE_API_KEY environment variable; minimum scopes are schema.bases:read and data.records:read, with write and comment scopes optional — you decide how much it can touch. · MIT · 456★

    • Unofficial community project — not built or supported by Airtable
    • No interface or automation tools; covers records, schema, and comments only
    • HTTP transport mode has no built-in authentication — the README itself warns about DNS rebinding and recommends stdio locally or an authenticated reverse proxy
  3. Non-developers and teams already on Zapier who want per-action control without ever handling a token.

    27 Airtable actions listed on the vendor page: 9 write actions, 8 search actions, 2 triggers, and 1 other — create and update records, add comments, create tables, find bases and records.

    Fully managed by Zapier — no code and no local process; works with Claude, Cursor, and other MCP clients. · Hosted endpoint at mcp.zapier.com with built-in authentication; you connect your Airtable account through Zapier once, then choose and scope exactly which actions the AI is allowed to use.

    • A Zapier product, not an Airtable one — you are going through Zapier's integration layer, not the full Airtable API surface
    • Batch create and update actions are capped at 10 records each
    • Find Base only works on accounts with 5,000 or fewer bases
    • Usage limits depend on your Zapier plan, and the MCP page itself does not state pricing
  4. Developers building agents that need Airtable plus other apps behind a single managed-auth MCP endpoint (Claude Agent SDK, LangChain, OpenAI Agents SDK integrations documented).

    23 tools and 6 triggers per the vendor page: record CRUD, comments, and schema retrieval, served through Composio's hosted Tool Router MCP endpoint alongside hundreds of other app toolkits.

    Managed by Composio; connected from code via SDK and a Tool Router session rather than a one-click connector. · Managed OAuth2 or API-key auth with automatic token refresh and rotation; free to start using Composio's built-in Airtable app, with your own OAuth app recommended for production.

    • Not an Airtable product — a third party holds your connection credentials (Composio states SOC 2 Type 2 compliance)
    • Setup is developer-oriented: SDK plus API key, not a no-code path
    • Production use recommends configuring your own Airtable OAuth app
    • Narrower coverage than the official server — no interface or automation building
  5. Developers who specifically need webhook management from MCP, or a trimmed tool profile for tool-capped clients. Actively maintained (last push August 5, 2026).

    Claims 42 tools: record CRUD, batch operations (10-record cap), schema management, comments, and webhook management, plus a reduced 18-tool core profile for clients with tool caps like Cursor.

    Self-hosted — npx @rashidazarang/airtable-mcp; HTTP transport option available for hosted deployments. · Airtable personal access token created at airtable.com/create/tokens, passed via the AIRTABLE_TOKEN environment variable; the README's suggested scopes are broad (records and schema read/write). · MIT · 87★

    • Unofficial, single-maintainer project with modest adoption (87 stars)
    • The advertised 'AI-powered analytics' are 10 prompt templates, not an analytics engine
    • The wide tool surface encourages granting a broad-scope token — scope down if you only need record access

Airtable MCP servers compared

ServerMaintained byRunsAuthLicense
Airtable MCP Server (official)AirtableFully hosted by Airtable at https://mcp.airtable.com/mcp — nothing to install or run; included with every plan at no added cost.OAuth via pre-built connectors in Claude, ChatGPT, Cursor and other MCP clients; personal access tokens supported for manual configurations. Access is limited to what your Airtable user can already see.
domdomegg/airtable-mcp-serverCommunitySelf-hosted local process — npx airtable-mcp-server or Docker; optional HTTP transport for remote setups.Airtable personal access token passed as the AIRTABLE_API_KEY environment variable; minimum scopes are schema.bases:read and data.records:read, with write and comment scopes optional — you decide how much it can touch.MIT
Zapier MCP (Airtable)CommunityFully managed by Zapier — no code and no local process; works with Claude, Cursor, and other MCP clients.Hosted endpoint at mcp.zapier.com with built-in authentication; you connect your Airtable account through Zapier once, then choose and scope exactly which actions the AI is allowed to use.
Composio (Airtable toolkit)CommunityManaged by Composio; connected from code via SDK and a Tool Router session rather than a one-click connector.Managed OAuth2 or API-key auth with automatic token refresh and rotation; free to start using Composio's built-in Airtable app, with your own OAuth app recommended for production.
rashidazarang/airtable-mcpCommunitySelf-hosted — npx @rashidazarang/airtable-mcp; HTTP transport option available for hosted deployments.Airtable personal access token created at airtable.com/create/tokens, passed via the AIRTABLE_TOKEN environment variable; the README's suggested scopes are broad (records and schema read/write).MIT

How to choose

Pick the official Airtable server if you want the widest coverage — it is the only option that can build interfaces and draft automations, and it costs nothing extra on any plan. Pick domdomegg/airtable-mcp-server if you want a local, auditable process with a personal access token scoped to exactly the bases you choose, and records plus schema is enough. Pick Zapier MCP if you already live in Zapier and want hosted auth with per-action controls and no code. Pick Composio if you are building agents in code and want managed OAuth across many apps behind one endpoint. Be wary of the long tail — several Airtable MCP repos haven't been touched since early 2025.

How this ranking works

Every server here is real and was checked against its repository or vendor documentation on the date above — stars and licenses come from the GitHub API, not from memory. Order reflects verifiable criteria only: official support, maintenance recency, adoption, auth model, and documented capability coverage. We do not run paid placements, and we list every caveat we find, including the unflattering ones.

Common questions

Is there an official Airtable MCP server?
Yes. Airtable hosts one at mcp.airtable.com/mcp, included with every plan at no added cost. It reads and writes records, creates tables and fields, builds interface pages, and sets up automations — automations land as drafts you review before they go live.
How does authentication actually work for Airtable MCP servers?
The official hosted server connects via OAuth through pre-built connectors in clients like Claude and ChatGPT, with personal access tokens available for manual configurations. Community servers like domdomegg's need a personal access token you create at airtable.com/create/tokens and pass as an environment variable — scope it to only the bases and permissions the job requires.
Do MCP calls count against Airtable's API rate limits?
Yes. Airtable states the official MCP server uses its public API under the hood, so calls count against your plan's standard API rate limits, and batch record creation is capped at 10 records per request. Community servers hitting the same API face the same limits.
Can an MCP server see all my Airtable data?
Only what its credential can see. The official server is limited to data matching your existing Airtable permissions, and org admins can allowlist or block third-party integrations. With token-based community servers, access is exactly the scopes and bases you grant the token — grant less than you think you need.

MCP servers we build

Automation Squad publishes its own open-source MCP servers and agent skills, documented with the same rules this ranking uses.