A

Airtable MCP

Read and write Airtable bases with schema introspection.

Airtable·No reviews yet
Repo Docs
Share:

About

List bases and tables, describe fields (including linked records and formulas), and perform full CRUD on records. Supports filtering with Airtable formulas, view-based lookups, and batch upserts. Great foundation for lightweight ops apps, content pipelines, and internal directories.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Airtable MCP.

What data operations does the Airtable MCP support?
The Airtable MCP allows you to list bases and tables, describe fields, and perform full Create, Read, Update, and Delete (CRUD) operations on records. It supports filtering with Airtable formulas and view-based lookups, as well as batch upserts.
How can I filter records when using this MCP?
You can filter records using Airtable formulas. The MCP also supports view-based lookups, which allows you to interact with data as organized in specific Airtable views.
Does the Airtable MCP require an API key?
Yes, this MCP uses an API key for authentication. You will need to provide a valid Airtable API key to access and manage your bases and records.
What are typical use cases for the Airtable MCP?
This MCP is well-suited for building lightweight operations applications, content pipelines, and internal directories. It provides comprehensive interaction with Airtable data for various automation and data management tasks.
Are there any limitations or prerequisites for using this MCP?
A key prerequisite for this MCP is an existing Airtable account and base. You will also need to generate an API key from your Airtable account for authentication.

Install Airtable MCP

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-airtable"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-airtable"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "airtable": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-airtable"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.