A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records. Step 1: Create an Airtable personal access token by clicking here. Details: - Name: Anything you want e.g. 'Airtable MCP Server Token'. - Scopes: schema.bases:read, data.records:read, and optionally schema.bases:write, data.re
Add this skill
npx mdskills install domdomegg/airtable-mcp-serverComprehensive Airtable integration with excellent tool coverage and detailed setup instructions
1# airtable-mcp-server23A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records.45https://github.com/user-attachments/assets/c8285e76-d0ed-4018-94c7-20535db6c94467## Installation89**Step 1**: [Create an Airtable personal access token by clicking here](https://airtable.com/create/tokens/new). Details:10- Name: Anything you want e.g. 'Airtable MCP Server Token'.11- Scopes: `schema.bases:read`, `data.records:read`, and optionally `schema.bases:write`, `data.records:write`, `data.recordComments:read`, and `data.recordComments:write`.12- Access: The bases you want to access. If you're not sure, select 'Add all resources'.1314Keep the token handy, you'll need it in the next step. It should look something like `pat123.abc123` (but longer).1516**Step 2**: Follow the instructions below for your preferred client:1718- [Claude Desktop](#claude-desktop)19- [Cursor](#cursor)20- [Cline](#cline)2122### Claude Desktop2324#### (Recommended) Via the extensions browser25261. Open Claude Desktop and go to Settings → Extensions272. Click 'Browse Extensions' and find 'Airtable MCP Server'283. Click 'Install' and paste in your API key2930#### (Advanced) Alternative: Via manual .mcpb installation31321. Find the latest mcpb build in [the GitHub Actions history](https://github.com/domdomegg/airtable-mcp-server/actions/workflows/mcpb.yaml?query=branch%3Amaster) (the top one)332. In the 'Artifacts' section, download the `airtable-mcp-server-mcpb` file343. Rename the `.zip` file to `.mcpb`354. Double-click the `.mcpb` file to open with Claude Desktop365. Click "Install" and configure with your API key3738#### (Advanced) Alternative: Via JSON configuration39401. Install [Node.js](https://nodejs.org/en/download)412. Open Claude Desktop and go to Settings → Developer423. Click "Edit Config" to open your `claude_desktop_config.json` file434. Add the following configuration to the "mcpServers" section, replacing `pat123.abc123` with your API key:4445```json46{47 "mcpServers": {48 "airtable": {49 "command": "npx",50 "args": [51 "-y",52 "airtable-mcp-server"53 ],54 "env": {55 "AIRTABLE_API_KEY": "pat123.abc123",56 }57 }58 }59}60```61625. Save the file and restart Claude Desktop6364### Cursor6566#### (Recommended) Via one-click install67681. Click [](https://cursor.com/install-mcp?name=airtable&config=JTdCJTIyY29tbWFuZCUyMiUzQSUyMm5weCUyMC15JTIwYWlydGFibGUtbWNwLXNlcnZlciUyMiUyQyUyMmVudiUyMiUzQSU3QiUyMkFJUlRBQkxFX0FQSV9LRVklMjIlM0ElMjJwYXQxMjMuYWJjMTIzJTIyJTdEJTdE)692. Edit your `mcp.json` file to insert your API key7071#### (Advanced) Alternative: Via JSON configuration7273Create either a global (`~/.cursor/mcp.json`) or project-specific (`.cursor/mcp.json`) configuration file, replacing `pat123.abc123` with your API key:7475```json76{77 "mcpServers": {78 "airtable": {79 "command": "npx",80 "args": ["-y", "airtable-mcp-server"],81 "env": {82 "AIRTABLE_API_KEY": "pat123.abc123"83 }84 }85 }86}87```8889### Cline9091#### (Recommended) Via marketplace92931. Click the "MCP Servers" icon in the Cline extension942. Search for "Airtable" and click "Install"953. Follow the prompts to install the server9697#### (Advanced) Alternative: Via JSON configuration98991. Click the "MCP Servers" icon in the Cline extension1002. Click on the "Installed" tab, then the "Configure MCP Servers" button at the bottom1013. Add the following configuration to the "mcpServers" section, replacing `pat123.abc123` with your API key:102103```json104{105 "mcpServers": {106 "airtable": {107 "type": "stdio",108 "command": "npx",109 "args": ["-y", "airtable-mcp-server"],110 "env": {111 "AIRTABLE_API_KEY": "pat123.abc123"112 }113 }114 }115}116```117118## Components119120### Tools121122- **list_records**123 - Lists records from a specified Airtable table124 - Input parameters:125 - `baseId` (string, required): The ID of the Airtable base126 - `tableId` (string, required): The ID of the table to query127 - `maxRecords` (number, optional): Maximum number of records to return. Defaults to 100.128 - `filterByFormula` (string, optional): Airtable formula to filter records129130- **search_records**131 - Search for records containing specific text132 - Input parameters:133 - `baseId` (string, required): The ID of the Airtable base134 - `tableId` (string, required): The ID of the table to query135 - `searchTerm` (string, required): Text to search for in records136 - `fieldIds` (array, optional): Specific field IDs to search in. If not provided, searches all text-based fields.137 - `maxRecords` (number, optional): Maximum number of records to return. Defaults to 100.138139- **list_bases**140 - Lists all accessible Airtable bases141 - No input parameters required142 - Returns base ID, name, and permission level143144- **list_tables**145 - Lists all tables in a specific base146 - Input parameters:147 - `baseId` (string, required): The ID of the Airtable base148 - `detailLevel` (string, optional): The amount of detail to get about the tables (`tableIdentifiersOnly`, `identifiersOnly`, or `full`)149 - Returns table ID, name, description, fields, and views (to the given `detailLevel`)150151- **describe_table**152 - Gets detailed information about a specific table153 - Input parameters:154 - `baseId` (string, required): The ID of the Airtable base155 - `tableId` (string, required): The ID of the table to describe156 - `detailLevel` (string, optional): The amount of detail to get about the table (`tableIdentifiersOnly`, `identifiersOnly`, or `full`)157 - Returns the same format as list_tables but for a single table158 - Useful for getting details about a specific table without fetching information about all tables in the base159160- **get_record**161 - Gets a specific record by ID162 - Input parameters:163 - `baseId` (string, required): The ID of the Airtable base164 - `tableId` (string, required): The ID of the table165 - `recordId` (string, required): The ID of the record to retrieve166167- **create_record**168 - Creates a new record in a table169 - Input parameters:170 - `baseId` (string, required): The ID of the Airtable base171 - `tableId` (string, required): The ID of the table172 - `fields` (object, required): The fields and values for the new record173174- **update_records**175 - Updates one or more records in a table176 - Input parameters:177 - `baseId` (string, required): The ID of the Airtable base178 - `tableId` (string, required): The ID of the table179 - `records` (array, required): Array of objects containing record ID and fields to update180181- **delete_records**182 - Deletes one or more records from a table183 - Input parameters:184 - `baseId` (string, required): The ID of the Airtable base185 - `tableId` (string, required): The ID of the table186 - `recordIds` (array, required): Array of record IDs to delete187188- **create_table**189 - Creates a new table in a base190 - Input parameters:191 - `baseId` (string, required): The ID of the Airtable base192 - `name` (string, required): Name of the new table193 - `description` (string, optional): Description of the table194 - `fields` (array, required): Array of field definitions (name, type, description, options)195196- **update_table**197 - Updates a table's name or description198 - Input parameters:199 - `baseId` (string, required): The ID of the Airtable base200 - `tableId` (string, required): The ID of the table201 - `name` (string, optional): New name for the table202 - `description` (string, optional): New description for the table203204- **create_field**205 - Creates a new field in a table206 - Input parameters:207 - `baseId` (string, required): The ID of the Airtable base208 - `tableId` (string, required): The ID of the table209 - `name` (string, required): Name of the new field210 - `type` (string, required): Type of the field211 - `description` (string, optional): Description of the field212 - `options` (object, optional): Field-specific options213214- **update_field**215 - Updates a field's name or description216 - Input parameters:217 - `baseId` (string, required): The ID of the Airtable base218 - `tableId` (string, required): The ID of the table219 - `fieldId` (string, required): The ID of the field220 - `name` (string, optional): New name for the field221 - `description` (string, optional): New description for the field222223- **create_comment**224 - Creates a comment on a record225 - Input parameters:226 - `baseId` (string, required): The ID of the Airtable base227 - `tableId` (string, required): The ID of the table228 - `recordId` (string, required): The ID of the record229 - `text` (string, required): The comment text230 - `parentCommentId` (string, optional): Parent comment ID for threaded replies231 - Returns the created comment with ID, author, creation time, and text232233- **list_comments**234 - Lists comments on a record235 - Input parameters:236 - `baseId` (string, required): The ID of the Airtable base237 - `tableId` (string, required): The ID of the table238 - `recordId` (string, required): The ID of the record239 - `pageSize` (number, optional): Number of comments to return (max 100, default 100)240 - `offset` (string, optional): Pagination offset for retrieving additional comments241 - Returns comments array with author, text, timestamps, reactions, and mentions242 - Comments are returned from newest to oldest243244### HTTP Transport245246The server can also run in HTTP mode for use with remote MCP clients:247248```bash249MCP_TRANSPORT=http PORT=3000 npx airtable-mcp-server250```251252This starts a stateless HTTP server at `http://localhost:3000/mcp`. Note: HTTP transport has no built-in authentication - only use behind a reverse proxy or in a secured environment.253254## Contributing255256Pull requests are welcomed on GitHub! To get started:2572581. Install Git and Node.js2592. Clone the repository2603. Install dependencies with `npm install`2614. Run `npm run test` to run tests2625. Build with `npm run build`263 - You can use `npm run build:watch` to automatically build after editing [`src/index.ts`](./src/index.ts). This means you can hit save, reload Claude Desktop (with Ctrl/Cmd+R), and the changes apply.264265## Releases266267Versions follow the [semantic versioning spec](https://semver.org/).268269To release:2702711. Use `npm version <major | minor | patch>` to bump the version2722. Run `git push --follow-tags` to push with tags2733. Wait for GitHub Actions to publish to the NPM registry.274
Full transparency — inspect the skill content before installing.