インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、connector をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → Airtable をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Airtable
Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.
セットアップ
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.
…(continued in the in-app connector instructions)
前提条件: AIRTABLE_PERSONAL_ACCESS_TOKEN
ローカルでコネクタをインストール
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
http://localhost:3000/connectors/store を開き、 Airtable を選択し、前提条件に記載された環境変数を入力します。
利用可能なツール
| Tool | What it does |
|---|---|
airtable_list_bases | List bases accessible to the Personal Access Token |
airtable_list_tables | List a base's table schemas, including table IDs, names, fields, and views |
airtable_list_records | List records from a table |
airtable_get_record | Get one record by ID from a table, for example record ID recABC123DEF456 |
次のステップ
このガイドは役に立ちましたか?