๐๏ธ๐ค Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
{
"mcpServers": {
"airtable": {
"env": {
"AIRTABLE_API_KEY": "pat123.abc123"
},
"args": [
"-y",
"airtable-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
๐๏ธ๐ค Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
Is it safe?
No known CVEs for airtable-mcp-server.
No authentication โ any process on your machine can connect.
MIT. View license โ
Is it maintained?
Last commit 2 days ago. 434 stars. 2,002 weekly downloads.
Will it work with my client?
Transport: stdio, sse, http. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Context cost
12 tools. ~1,500 tokens (0.7% of 200K).
This server supports HTTP transport. Be the first to test it โ help the community know if it works.
list_recordsLists records from a specified Airtable table
search_recordsSearch for records containing specific text
list_basesLists all accessible Airtable bases
list_tablesLists all tables in a specific base
describe_tableGets detailed information about a specific table
get_recordGets a specific record by ID
create_recordCreates a new record in a table
update_recordsUpdates one or more records in a table
delete_recordsDeletes one or more records from a table
create_tableCreates a new table in a base
This server is missing a description.If you've used it, help the community.
Add informationNo known vulnerabilities.
Have you used this server?
Share your experience โ it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Official Notion MCP Server
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
Academic paper search across 11 sources with AI curation, ranked push, Zotero and Obsidian support.
MCP Security Weekly
Get CVE alerts and security updates for Airtable Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
# airtable-mcp-server
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.
https://github.com/user-attachments/assets/c8285e76-d0ed-4018-94c7-20535db6c944
## Installation
**Step 1**: [Create an Airtable personal access token by clicking here](https://airtable.com/create/tokens/new). Details:
- Name: Anything you want e.g. 'Airtable MCP Server Token'.
- Scopes: `schema.bases:read`, `data.records:read`, and optionally `schema.bases:write`, `data.records:write`, `data.recordComments:read`, and `data.recordComments:write`.
- Access: The bases you want to access. If you're not sure, select 'Add all resources'.
Keep the token handy, you'll need it in the next step. It should look something like `pat123.abc123` (but longer).
**Step 2**: Follow the instructions below for your preferred client:
- [Claude Desktop](#claude-desktop)
- [Cursor](#cursor)
- [Cline](#cline)
### Claude Desktop
#### (Recommended) Via the extensions browser
1. Open Claude Desktop and go to Settings โ Extensions
2. Click 'Browse Extensions' and find 'Airtable MCP Server'
3. Click 'Install' and paste in your API key
#### (Advanced) Alternative: Via manual .mcpb installation
1. 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)
2. In the 'Artifacts' section, download the `airtable-mcp-server-mcpb` file
3. Rename the `.zip` file to `.mcpb`
4. Double-click the `.mcpb` file to open with Claude Desktop
5. Click "Install" and configure with your API key
#### (Advanced) Alternative: Via JSON configuration
1. Install [Node.js](https://nodejs.org/en/download)
2. Open Claude Desktop and go to Settings โ Developer
3. Click "Edit Config" to open your `claude_desktop_config.json` file
4. Add the following configuration to the "mcpServers" section, replacing `pat123.abc123` with your API key:
```json
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": [
"-y",
"airtable-mcp-server"
],
"env": {
"AIRTABLE_API_KEY": "pat123.abc123",
}
}
}
}
```
5. Save the file and restart Claude Desktop
### Cursor
#### (Recommended) Via one-click install
1. Click [](https://cursor.com/install-mcp?name=airtable&config=JTdCJTIyY29tbWFuZCUyMiUzQSUyMm5weCUyMC15JTIwYWlydGFibGUtbWNwLXNlcnZlciUyMiUyQyUyMmVudiUyMiUzQSU3QiUyMkFJUlRBQkxFX0FQSV9LRVklMjIlM0ElMjJwYXQxMjMuYWJjMTIzJTIyJTdEJTdE)
2. Edit your `mcp.json` file to insert your API key
#### (Advanced) Alternative: Via JSON configuration
Create either a global (`~/.cursor/mcp.json`) or project-specific (`.cursor/mcp.json`) configuration file, replacing `pat123.abc123` with your API key:
```json
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": ["-
... [View full README on GitHub]