Airtable MCP Server

Databasestdiov1.6.0
Repository

MCP server for Airtable that lets AI agents read and write records, list bases and tables, inspect field schemas, and run filtered queries. Ideal for turning Airtable into a lightweight backend or knowledge base that agents can manage conversationally.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "airtable-mcp-server"
      ],
      "env": {
        "AIRTABLE_API_KEY": "<YOUR_AIRTABLE_API_KEY>"
      }
    }
  }
}

Tools (3)

list_records

List records from a table with optional filtering and field selection.

{
  "type": "object",
  "required": [
    "base_id",
    "table"
  ],
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name or ID"
    },
    "base_id": {
      "type": "string",
      "description": "Airtable base ID"
    },
    "max_records": {
      "type": "integer",
      "description": "Maximum number of records to return"
    },
    "filter_by_formula": {
      "type": "string",
      "description": "Airtable formula to filter records"
    }
  }
}

create_record

Create a new record in a table with the given field values.

{
  "type": "object",
  "required": [
    "base_id",
    "table",
    "fields"
  ],
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name or ID"
    },
    "fields": {
      "type": "object",
      "description": "Field name/value pairs for the new record"
    },
    "base_id": {
      "type": "string",
      "description": "Airtable base ID"
    }
  }
}

update_record

Update fields on an existing record.

{
  "type": "object",
  "required": [
    "base_id",
    "table",
    "record_id",
    "fields"
  ],
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name or ID"
    },
    "fields": {
      "type": "object",
      "description": "Field name/value pairs to update"
    },
    "base_id": {
      "type": "string",
      "description": "Airtable base ID"
    },
    "record_id": {
      "type": "string",
      "description": "ID of the record to update"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Dominik Kundel (@domdomegg)
Repository
https://github.com/domdomegg/airtable-mcp-server
License
MIT
Version
1.6.0
Stars
1,340
Last Updated
June 19, 2026
Airtable MCP Server - MCP Server | OpenModels