MCP Catalogs
首页

airtable-mcp-server

by domdomegg·444·综合分 53

一个功能全面的 MCP 服务器,允许 AI 系统通过读写操作与 Airtable 数据库交互。

databaseproductivitydeveloper-tools
130
Forks
5
活跃 Issue
本月
最近提交
2 天前
收录于

概述

airtable-mcp-server 是专门为 Airtable 集成设计的 Model Context Protocol 的稳健实现。它提供了全面的数据库架构检查、记录操作和表管理工具。该服务器支持读写操作,适用于需要与 Airtable 数据交互的各种自动化和 AI 驱动的工作流。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:通过 AI 助手自动化 Airtable 中的数据录入和更新
:构建连接 Airtable 与其他系统的智能数据管道
:在 Airtable 数据集上实现 AI 驱动的分析和报告
:我需要在 Airtable 中配置哪些权限?
:我可以在 Claude Desktop 以外的 MCP 客户端中使用此服务器吗?

什么时候选它

当您需要通过 AI 助手完全访问 Airtable 数据库的读写权限,并且希望使用维护良好、工具覆盖全面的活跃开发服务器时,选择此方案。

什么时候不要选它

如果您需要访问 Airtable 的自动化接口(如界面)或在需要除 API 令牌外额外认证的安全环境中使用,请不要选择此方案。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • list_records

    Lists records from a specified Airtable table

  • search_records

    Search for records containing specific text

  • list_bases

    Lists all accessible Airtable bases

  • list_tables

    Lists all tables in a specific base

  • describe_table

    Gets detailed information about a specific table

  • get_record

    Gets a specific record by ID

  • create_record

    Creates a new record in a table

  • update_records

    Updates one or more records in a table

  • delete_records

    Deletes one or more records from a table

  • create_table

    Creates a new table in a base

  • create_field

    Creates a new field in a table

  • create_comment

    Creates a comment on a record

可对比工具

notion-mcpgoogle-sheets-mcpairtable-api

安装

安装

**第一步**:[创建 Airtable 个人访问令牌](https://airtable.com/create/tokens/new)

  • 名称:例如 'Airtable MCP Server Token'
  • 范围:schema.bases:readdata.records:read,以及可选的 schema.bases:writedata.records:write

**第二步**:通过在 claude_desktop_config.json 中添加以下配置来设置 Claude Desktop:

{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": [
        "-y",
        "airtable-mcp-server"
      ],
      "env": {
        "AIRTABLE_API_KEY": "pat123.abc123",
      }
    }
  }
}

保存后重启 Claude Desktop。

FAQ

我需要在 Airtable 中配置哪些权限?
至少需要 `schema.bases:read` 和 `data.records:read` 范围。对于写操作,还需要添加 `schema.bases:write` 和 `data.records:write` 范围。
我可以在 Claude Desktop 以外的 MCP 客户端中使用此服务器吗?
是的,该服务器支持多个客户端,包括 Cursor 和 Cline,README 中为每个客户端提供了配置说明。

airtable-mcp-server 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。