Connector guide1-minute readEN · DE · IT

Airtable を Cursor に接続する方法 — MCP 経由

Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.

HCBy HelpCode team更新日 1 min read GitHub でオープンソース

クレジットカード不要 · 7日間の試用 · セルフホストの選択肢あり

  • 7日間の無料トライアル
    クレジットカード不要
  • GDPR & SOC 2 ready
    EU データ保管、監査ログ
  • GitHub でオープンソース
    オープンソース · AGPL-3.0
  • ChatGPT、Claude、Gemini に対応
    MCP 対応クライアントすべて

インストール不要。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 + Cursor

Read Airtable bases, table schemas, and records from any AI agent. 4 read-only tools, Personal Access Token auth.

前提条件

完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:

AIRTABLE_PERSONAL_ACCESS_TOKEN

ステップ 1 — 認証情報を取得

Setup:

  1. Create a Personal Access Token at https://airtable.com/create/tokens.
  2. Grant only the data.records:read and schema.bases:read scopes.
  3. Restrict the token's access to only the bases this connector must read.
  4. 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)

ステップ 2 — アダプターをインストール

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

ステップ 3 — Cursor にコネクタを追加

Cursor は ~/.cursor/mcp.json から MCP サーバを読み込みます。次のエントリを追加してください:

{
  "mcpServers": {
    "anythingmcp": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
    }
  }
}
  1. AnythingMCP の Profile → MCP API Keys → New KeyMCP API key を取得。
  2. ファイルを保存し Cursor を再起動。
  3. Cursor → Settings → MCP を開き、Airtable が "Connected" として表示されることを確認。
  4. チャット開始 — Airtable のすべてのツールが呼び出し可能になります。

利用可能なツール

ToolWhat it does
airtable_list_basesList bases accessible to the Personal Access Token
airtable_list_tablesList a base's table schemas, including table IDs, names, fields, and views
airtable_list_recordsList records from a table
airtable_get_recordGet one record by ID from a table, for example record ID recABC123DEF456

FAQ

Cursor の Free プランでカスタム MCP サーバは使えますか? はい — Hobby/Pro/Business で利用可能です。

次のステップ

このガイドは役に立ちましたか?

Ship MCP to your stack in 60 seconds.

Spin up AnythingMCP on managed Cloud or self-host it on your infrastructure. Free for 7 days, no credit card.

関連ガイド