Airtable MCP Server

Databasestdiov1.6.0
代码仓库

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.

连接

将此配置添加到 .claude/mcp.json

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

工具 (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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Dominik Kundel (@domdomegg)
代码仓库
https://github.com/domdomegg/airtable-mcp-server
许可证
MIT
版本
1.6.0
星标
1,340
最后更新
2026年6月19日