At a glance: GitHub — 438 stars, TypeScript, MIT license, 120 commits, 15 tools, stdio + HTTP transport, personal access token auth. Community-built by domdomegg (Adam Jones).

The Airtable MCP server is the most popular community-built MCP integration for Airtable, Howie Liu’s no-code database platform used by 500,000+ organizations. It gives AI agents full CRUD access to bases, tables, records, fields, and comments — everything you need to read, write, and manage Airtable data programmatically through natural language.

Airtable Inc. was founded in 2012 by Howie Liu, Andrew Ofstad, and Emmett Nicholas in San Francisco. The company has raised $1.4B in funding, peaked at an $11.7B valuation (Series F, December 2021), and currently sits around ~$4B on secondary markets. As of early 2026: ~929 employees, ~$478M ARR (up ~27% year-over-year from $375M in 2023), cash flow positive since late 2024 with roughly half of the $1.4B raised still in the bank. In September 2025, CEO Howie Liu announced a “refounding” of Airtable as an AI-native platform. In October 2025, Airtable hired CTO David Azose from OpenAI and acquired AI startup DeepSky. In January 2026, Airtable launched Superagent — its first standalone product in 13 years — a multi-agent research platform that coordinates specialized agents working in parallel, powered by Claude and pulling from FactSet, Crunchbase, and SEC filings. An IPO may be on the horizon for 2026.

In February 2026, Airtable launched an official MCP server — resolving the gap this review previously noted. The official server uses OAuth authentication, supports Claude, ChatGPT, and Cursor, and enables searching/analyzing data, creating records, updating records, and accessing Airtable Interface data. It respects existing Airtable permissions and is subject to standard API rate limits (creating records is limited to 10 per request). This means domdomegg’s community server now competes with — and in some ways still exceeds — the official offering.

What It Does

The server exposes 15 MCP tools across four categories:

Database Navigation

ToolWhat It Does
list_basesLists all accessible bases with IDs, names, and permission levels
list_tablesRetrieves tables from a base with configurable detail levels
describe_tableGets comprehensive info about a table’s structure, fields, and views

Record Operations

ToolWhat It Does
list_recordsQuery records with optional filtering and record limits
search_recordsText-based search across specified or all text fields
get_recordRetrieve an individual record by ID
create_recordAdd new records with specified field values
update_recordsModify multiple records simultaneously
delete_recordsRemove records from tables

Schema Management

ToolWhat It Does
create_tableCreate new tables with field definitions
update_tableModify table names or descriptions
create_fieldAdd fields with type specifications
update_fieldChange field metadata

Collaboration & Attachments

ToolWhat It Does
create_commentAdd record comments with optional threading
list_commentsRetrieve comments sorted newest-to-oldest with pagination
upload_attachmentDirect file uploads to attachment fields (added v1.11.0)

The server covers Airtable’s core data layer — bases, tables, records, fields, comments, and attachments. It does not support Airtable Automations, Interfaces, Extensions, or Webhooks.

Setup & Configuration

Quick Start (npx)

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": ["-y", "airtable-mcp-server"],
      "env": {
        "AIRTABLE_API_KEY": "pat..."
      }
    }
  }
}

Other Installation Methods

  • Homebrew: brew install airtable-mcp-server
  • Docker: Container support available
  • DXT: Claude Desktop Extension format
  • Cursor: One-click install from Cursor marketplace
  • Cline: Available in Cline marketplace

HTTP Transport

Set environment variables to run as a stateless HTTP server:

MCP_TRANSPORT=http
PORT=3000

The HTTP transport has no built-in authentication — a reverse proxy with auth is recommended for production use.

Authentication

Uses an Airtable Personal Access Token passed via the AIRTABLE_API_KEY environment variable. You create the token in Airtable’s developer hub with specific scopes:

  • Required: schema.bases:read, data.records:read
  • For writes: data.records:write
  • For comments: data.recordComments:read, data.recordComments:write

The granular scope system means you can create a read-only token for agents that should only query data, or a full-access token for agents that need to create and modify records.

Development History

DateVersionWhat Changed
Dec 12, 2024Repository created
Dec 22, 2024v1.1.0–v1.2.0Added search_records, improved tool guidance
May 11, 2025v1.5.xView support, sorting, validation fixes
Sep–Oct 2025v1.7.0–v1.9.0Rapid iteration, HTTP transport
Nov–Dec 2025v1.9.5–v1.9.6Server metadata, stability fixes
Jan 16, 2026v1.10.0destructiveHint annotations for dangerous tools
Feb 16, 2026v1.11.0upload_attachment tool
Feb 27, 2026v1.12.0Typecast support for create/update operations
Mar 7, 2026v1.13.0Fixed body size limit for large payloads

15 releases over 15 months, though no new release since v1.13.0 (March 7, 2026) — a 45-day gap, the longest since the project’s early days. The primary author (domdomegg) has contributed the bulk of 120 commits, with Dependabot handling dependency updates and 7 community contributors. PulseMCP: 102K all-time visitors, 2.2K weekly, #351 globally.

Airtable Pricing

The MCP server is free and open-source. You pay for Airtable’s platform, which determines your API limits:

TierPriceRecords/BaseAPI Calls/MonthRate Limit
Free$01,0001,0005 req/sec/base
Team$20/seat/mo50,000100,0005 req/sec/base
Business$45/seat/mo125,000500,0005 req/sec/base
EnterpriseCustom500,000+Unlimited5 req/sec/base

The Free tier is almost unusable for MCP. A single AI conversation — listing tables, searching records, updating a few — can consume dozens of API calls. At 1,000 calls/month, even moderate use would exhaust the allowance in a few sessions. The Team tier (100,000 calls) is the realistic minimum for regular MCP usage.

The hard 5 requests per second per base rate limit applies to all tiers and cannot be increased. There’s also a 50 requests/second limit across all traffic from a given user’s personal access tokens. Exceeding limits returns a 429 status code with a mandatory 30-second backoff.

How It Compares

FeatureAirtable MCP (domdomegg)Airtable MCP (official)Notion MCP (official)Monday.com MCP (official)
OfficialNo (community)YesYesYes
Stars438N/A (hosted)4,080383
Tools15~4 (search, create, update, interfaces)~20~15
Transportstdio + HTTPHosted (OAuth)stdiostdio + HTTP
LicenseMITProprietaryMITMIT
AuthPersonal access tokenOAuth 2.1OAuthOAuth
CRUDFullCreate + update + searchFullFull
Schema managementYesNoLimitedYes
CommentsYesNoYesNo
AttachmentsYesNoNoNo
Free tier API limit1,000/mo1,000/moVariesVaries
Rate limit5 req/sec/base5 req/sec/base3 req/sec

With the official Airtable MCP server launching in February 2026, Airtable has joined Notion and Monday.com in offering first-party MCP support. However, the official server is notably limited compared to domdomegg’s community version — it lacks schema management, comments, attachments, delete operations, and is restricted to 10 records per create request. The community server remains the more capable option for power users who need full database control.

Other Airtable MCP Servers

ServerStarsNotes
Airtable officialN/AHosted OAuth server, launched Feb 2026, limited tools (~4), no schema/delete/comments
domdomegg/airtable-mcp-server438Dominant community option, reviewed here
rashidazarang/airtable-ai-agent4Python, 33 tools, broader Airtable coverage
onimsha/airtable-mcp-server-oauth3Python, adds OAuth 2.1 support
CDataSoftware/airtable-mcp-server-by-cdata1Java, read-only, via CData JDBC
glassBead-tc/effect-airtable-mcp1TypeScript, Effect-based with type-safe validation

Known Issues

  1. Community project alongside official server — Airtable launched its own official MCP server in February 2026, which means this community project is no longer the only option. The official server uses OAuth and respects Airtable permissions natively, but is significantly more limited in capabilities (no schema management, no delete, no comments, no attachments). If domdomegg stops maintaining this server, users would fall back to the official server but lose substantial functionality.

  2. Free tier API exhaustion — Airtable’s Free tier allows only 1,000 API calls/month. MCP interactions are API-call-intensive — users report hitting limits quickly even with moderate usage. The Team tier ($20/seat/mo) is realistically required.

  3. Context window consumption — No field filtering on record retrieval. Issue #75 requests support for Airtable’s fields API parameter to limit returned data and conserve LLM context, but this hasn’t been implemented yet.

  4. 5 req/sec hard rate limit — Airtable enforces a 5 requests/second/base limit on all tiers with a mandatory 30-second backoff on 429 responses. An agent doing rapid sequential operations can easily hit this.

  5. No OAuth support — Uses personal access tokens only. A separate fork (onimsha/airtable-mcp-server-oauth) adds OAuth 2.1 support, but the main server requires token management.

  6. HTTP transport lacks auth — Running in HTTP mode exposes the server without built-in authentication. A reverse proxy with auth must be configured separately for any non-local deployment.

  7. Destructive operations — While v1.10.0 added destructiveHint annotations for delete/update tools, the server doesn’t enforce any confirmation flow. An agent can delete records or tables without a safety net beyond the LLM’s judgment.

  8. Limited collaboration features — Comments and attachments are supported, but no access to Airtable Automations, Interfaces, Extensions, Webhooks, or revision history. The server covers data operations, not workflow management.

  9. Release cadence slowing — No new release since v1.13.0 (March 7, 2026), a 45-day gap. With the official Airtable MCP server now available, the question of long-term community maintenance becomes more pointed. 5 open issues remain, including the longstanding #75 (field filtering) from December 2025.

Bottom Line

The Airtable MCP server is a well-maintained, community-driven integration that covers the essential data operations most users need — listing bases, querying records, creating and updating data, managing schema, and handling comments and attachments. With 438 stars, 15 releases, and 120 commits, it remains the most feature-complete Airtable MCP option available.

The landscape shifted significantly in February 2026 when Airtable launched its own official MCP server. This resolves the gap this review previously highlighted — Airtable now joins Notion and Monday.com with first-party MCP support. However, the official server is surprisingly limited: it covers basic search, create, and update operations with OAuth auth and Airtable Interface access, but lacks schema management, delete operations, comments, attachments, and the granular control that domdomegg’s server provides. For power users who need full database control, the community server remains the better choice.

For practical use: if you want simple data queries and record creation with OAuth convenience, the official server may be sufficient. If you need full CRUD, schema management, comments, attachments, or HTTP transport, domdomegg’s server delivers more. Both are subject to Airtable’s API rate limits, and the Free tier’s 1,000 calls/month remains impractical for regular MCP usage.

The 45-day release gap since v1.13.0 and the arrival of an official competitor raise questions about long-term maintenance. Airtable’s broader AI strategy — Superagent, the DeepSky acquisition, a potential 2026 IPO — suggests the official server will mature over time, potentially narrowing the feature gap.

Rating: 4 / 5 — Still the most complete Airtable MCP server available, with 15 tools covering full CRUD, schema management, comments, and attachments. MIT license, multiple installation methods (npx, Homebrew, Docker, DXT), dual transport support. The arrival of Airtable’s official MCP server (February 2026) reduces the “no official backing” risk, but the official server’s limited feature set means this community server retains its practical edge. Loses points for slowing release cadence, no field filtering on record retrieval (#75), Free tier API limits, and no support for Airtable’s automation and workflow features.

Category: Business & Productivity