================== /// MCP /// /// AIR /// ================== [server:online] [protocol:ready]
airtable-mcp-server
by domdomegg
Model Context Protocol server that lets LLMs read/write Airtable bases (schema discovery, CRUD operations, etc.)
205
58
Open SourceInstallation
1. Prerequisites:
• Node.js ≥ 18
• An Airtable Personal Access Token (PAT) with "data.records:read" scope for every base you want to expose.
2. Install the package globally (for a stand-alone server):
npm install -g airtable-mcp-server
or add it to an existing project:
npm install --save airtable-mcp-server
3. Create an environment file (.env) or export the following variables:
AIRTABLE_TOKEN=<your-airtable-pat>
AIRTABLE_BASES="baseId1,baseId2" # comma-separated list of bases to expose
PORT=8080 # optional – defaults to 3000
4. Start the MCP server:
npx airtable-mcp-server # or `airtable-mcp-server` if installed globally
5. The service will be available at http://localhost:<PORT>/mcp/v1/.
Documentation
License: MIT License
Updated 7/15/2025