At a glance: GitHub — 455 stars, TypeScript, MIT license, 140 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 2013 by Howie Liu, Andrew Ofstad, and Emmett Nicholas in San Francisco. The company has raised $1.36B in funding, peaked at an $11 billion valuation (Series F, December 2021), and by early 2026 traded at roughly $4 billion on secondary markets. As of early 2026: more than 700 employees, ~$480M ARR with over 20% year-over-year growth, cash flow positive since late 2024. In June 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 Superagentits first standalone product in its 13-year history — a multi-agent research platform that coordinates specialized agents working in parallel, pulling from FactSet, Crunchbase, and SEC filings. In August 2026, Italian software group Bending Spoons agreed to acquire Airtable in an all-cash deal valued at $1.28B enterprise value (~$2.25B in equity value including Airtable’s net cash) — closing off the IPO speculation this review previously noted and putting Airtable’s official MCP server under new corporate ownership going forward.

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
Jul 27, 2026v1.14.0Added fields parameter to list_records (closing Issue #75), HTTP transport test coverage and a cross-client response-routing fix, dependency bumps

16 releases over 20 months. After a roughly 4.5-month gap following v1.13.0, v1.14.0 shipped July 27, 2026. The primary author (domdomegg) has contributed the bulk of 140 commits, with Dependabot handling dependency updates and 9 outside contributors. PulseMCP reports 146K all-time visitors (4.1K this week) and ranks #299 overall (#236 this week).

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,000No monthly cap5 req/sec/base
EnterpriseCustom500,000+No monthly cap5 req/sec/base

Source: Airtable pricing and API call limits documentation.

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
Stars455N/A (hosted)4.6K417
Tools15~4 (search, create, update, interfaces)~20~15
Transportstdio + HTTPHosted (OAuth)stdiostdio + HTTP
LicenseMITProprietaryMITMIT
AuthPersonal access tokenOAuthOAuthOAuth
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-server455Dominant community option, reviewed here
rashidazarang/airtable-ai-agent8Python, 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 (partially addressed)Issue #75, which requested support for Airtable’s fields API parameter to limit returned data and conserve LLM context, was closed in v1.14.0 (July 27, 2026) — but the fix only added a fields parameter to list_records, not to the other record-retrieval tools like get_record or search_records.

  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 had slowed, then resumed — After v1.13.0 (March 7, 2026), there was a roughly 4.5-month gap before v1.14.0 shipped (July 27, 2026), closing out the field-filtering issue and fixing an HTTP transport cross-client response-routing bug. With the official Airtable MCP server now available, long-term community maintenance is still worth watching, but the July release shows the project isn’t dormant. 2 issues remain open as of this audit.

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 455 stars, 16 releases, and 140 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 multi-month release gap after v1.13.0 and the arrival of an official competitor raised questions about long-term maintenance, though v1.14.0 (July 27, 2026) shows the project is still active. Airtable’s broader AI strategy — Superagent (launched January 2026), the DeepSky acquisition — played out against a fast-moving corporate backdrop: rather than the IPO this review previously speculated about, Bending Spoons agreed in August 2026 to acquire Airtable outright for $1.28B enterprise value, a steep markdown from its 2021 peak $11B valuation. What that means for the official MCP server’s roadmap under new ownership is unclear. PulseMCP currently shows 146K all-time visitors and a #299 overall ranking for the community server.

Rating: 4 / 5 (held) — 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 a slower release cadence than in its first year, incomplete field filtering on record retrieval (list_records only, per v1.14.0), Free tier API limits, and no support for Airtable’s automation and workflow features.

Category: Business & Productivity