DEV Community

curatedmcp for CuratedMCP

Posted on Originally published at curatedmcp.com

Airtable MCP: Give Claude Full Read-Write Access to Your No-Code Databases

Install guide and config at curatedmcp.com

Airtable MCP: Give Claude Full Read-Write Access to Your No-Code Databases

What It Does

Airtable MCP bridges the gap between your AI agent and the databases powering your team's operations. Instead of copying data in and out manually, Claude (or Cursor) can now query records, update fields, create entries, and manage views directly within Airtable — all through natural language.

The server unlocks the full Airtable API surface: list and search across bases, create/update/delete records, work with linked records and lookups, apply filters using Airtable's formula syntax, and batch operations for high-volume changes. You get access to automation history too, so Claude can understand what's already been triggered.

This is especially powerful because Airtable is where many teams have already built their operational spine — CRMs, project trackers, content calendars, inventory systems. Now your AI can actually work inside those systems instead of just reading static exports.

How to Install

Run this single command:

npx -y @airtable/mcp-server
Enter fullscreen mode Exit fullscreen mode

Then add it to your Claude Desktop config:

{
  "mcpServers": {
    "airtable-mcp": {
      "command": "npx -y @airtable/mcp-server"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

You'll need an Airtable API token (generate one in your account settings). The server handles auth automatically once configured.

Real-World Use Cases

  • CRM automation: Tell Claude "update all deals in the lost column to closed, add a note explaining why, and flag for follow-up next quarter." It queries the view, filters records, updates multiple fields, and logs the changes — no spreadsheet juggling.

  • Content calendar triage: "Review my editorial calendar, identify pieces missing reviewer assignments, and auto-assign them based on topic." Claude reads your linked records, understands your tagging system, and updates assignments in bulk.

  • Bug triage with linking: "Create a critical bug ticket in Airtable, link it to this GitHub PR, set priority to P1, and notify the on-call engineer via the automation." The server creates the record, manages relationships, and triggers your existing Airtable automations.


Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.

Top comments (0)