airtable-mcp-server
by domdomegg·★ 444·综合分 53
一个功能全面的 MCP 服务器,允许 AI 系统通过读写操作与 Airtable 数据库交互。
概述
airtable-mcp-server 是专门为 Airtable 集成设计的 Model Context Protocol 的稳健实现。它提供了全面的数据库架构检查、记录操作和表管理工具。该服务器支持读写操作,适用于需要与 Airtable 数据交互的各种自动化和 AI 驱动的工作流。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当您需要通过 AI 助手完全访问 Airtable 数据库的读写权限,并且希望使用维护良好、工具覆盖全面的活跃开发服务器时,选择此方案。
什么时候不要选它
如果您需要访问 Airtable 的自动化接口(如界面)或在需要除 API 令牌外额外认证的安全环境中使用,请不要选择此方案。
此 server 暴露的工具
从 README 抽取出 12 个工具list_recordsLists records from a specified Airtable table
search_recordsSearch for records containing specific text
list_basesLists all accessible Airtable bases
list_tablesLists all tables in a specific base
describe_tableGets detailed information about a specific table
get_recordGets a specific record by ID
create_recordCreates a new record in a table
update_recordsUpdates one or more records in a table
delete_recordsDeletes one or more records from a table
create_tableCreates a new table in a base
create_fieldCreates a new field in a table
create_commentCreates a comment on a record
可对比工具
安装
安装
**第一步**:[创建 Airtable 个人访问令牌](https://airtable.com/create/tokens/new)
- 名称:例如 'Airtable MCP Server Token'
- 范围:
schema.bases:read、data.records:read,以及可选的schema.bases:write、data.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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。