Connector guide2-minute readEN · DE · IT

How to Connect Airtable to ChatGPT — via MCP

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

HCBy HelpCode teamUpdated 2 min read Open-source on GitHub

No credit card · 7-day trial · Self-host alternative available

  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Open source · AGPL-3.0
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

Skip the install. Get this working in under 2 minutes.

Start a free trial on cloud.anythingmcp.com, add the connector in one click, then point your AI client (Claude, ChatGPT, Copilot or Cursor) at the generated MCP endpoint. No Docker, no git clone, zero engineering experience required.

Start free trial

Summary

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

💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → Airtable, paste your credentials, mint an MCP API key — done. No Docker, no git clone, no local server.

Airtable + ChatGPT

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

Prerequisites

See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:

AIRTABLE_PERSONAL_ACCESS_TOKEN

Step 1 — Get credentials

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)

Step 2 — Install the adapter

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

Step 3 — Add the connector in ChatGPT

ChatGPT supports MCP servers via the Connectors feature (Plus / Pro / Team / Enterprise plans). The free tier does not support custom connectors.

  1. Open ChatGPT → Settings → Connectors (or click the 🔧 icon in the composer → Manage connectors).
  2. Click "Add custom connector".
  3. Fill in:
    • Name: Airtable
    • MCP server URL: https://cloud.anythingmcp.com/mcp
    • Authentication: Bearer token → paste your MCP API key (from AnythingMCP → Profile → MCP API Keys → New Key)
  4. Click Connect to authorize.

Available tools

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

Does ChatGPT free tier work with custom MCP connectors? No — Plus, Pro, Team or Enterprise required.

Next steps

Was this guide helpful?

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.

Related guides

AI
connectors

Airtable to MCP — Drive Airtable from any AI Agent

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

AI
connectors

How to Connect Airtable to Claude — via MCP

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

AI
connectors

How to Connect Airtable to Cursor — via MCP

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

AI
connectors

How to Connect Airtable to Gemini — via MCP

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

DB
connectors

How to Connect Deutsche Bahn Timetables API to ChatGPT — via MCP

Deutsche Bahn's official station-board API (DB API Marketplace, CC BY 4.0): find stations by name or EVA number, read the planned hourly timetable of any station, and pull the live change feed — delays, platform changes, cancellations and disruption messages — straight from DB. Free key, 60 requests per minute. Boards only; use the Deutsche Bahn Fahrplan connector for journey planning.

connectors

How to Connect Deutsche Bahn Fahrplan to ChatGPT — via MCP

German train timetable with live delays: search stations, list departures and arrivals with real-time delay, track and cancellation status, and plan journeys between any two stations. Runs on MOTIS over the open gtfs.de timetable (ICE, IC, EC, regional trains, S-Bahn) — no bahn.de scraping, no API key.