Airtable
Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.
7 天免费 · 无需信用卡 · EU 托管
问 Airtable 任何事
通过 AnythingMCP 对 Airtable 试一个真实提示 — Claude 调用工具并返回答案。在你的消息上按 Enter 即可在 Cloud 安装。
在 Cloud 上安装 AirtableClaude 是 AI,可能会出错。请核对回答。
2 分钟设置
- 1在 cloud.anythingmcp.com 开始免费试用。
- 2在连接器商店点击 Airtable。提示时粘贴凭据。
- 3生成 MCP API 密钥,将 AI 客户端指向生成的 MCP URL。
配置 Airtable
直接来自连接器定义:在哪里获取凭据、需要哪些权限,以及该适配器调用的是哪个 API。 由连接器作者以英文提供。
This connector uses the Airtable Web API v0 and is read-only.
Setup:
- Create a Personal Access Token at https://airtable.com/create/tokens.
- Grant only the
data.records:readandschema.bases:readscopes. - Restrict the token's access to only the bases this connector must read.
- Set
AIRTABLE_PERSONAL_ACCESS_TOKEN.
Authentication: Authorization: Bearer ${AIRTABLE_PERSONAL_ACCESS_TOKEN}. Use a scoped Personal Access Token, not a legacy API key.
Discovery order: call airtable_list_bases, then airtable_list_tables with a base ID to find table IDs, names, fields, and views. Use a table ID when possible because names can change.
Records: airtable_list_records returns one page and may include an offset. Pass that offset to the next call until it is absent. pageSize is 1-100; maxRecords limits the total records Airtable returns.
Filtering: filterByFormula uses Airtable formula syntax. For example, {Status}="Active" returns records whose Status field is Active. A view can apply saved filters and sorting; combine it with a formula only when both restrictions are intended.
Out of scope here: creating, updating, deleting, or otherwise modifying bases, tables, fields, views, or records.