Airtable MCP is a server that connects AI tools directly to Airtable, allowing you to interact with your Airtable data using natural language. It enables querying, creating, updating, and deleting records, along with base management, table operations, and schema manipulation through a standardized Model Context Protocol (MCP) interface compatible with Claude Desktop.
Before you begin, you'll need:
appi7fWMQcB3BNzPs
)Open your Claude Desktop configuration file:
open ~/Library/Application Support/Claude/claude_desktop_config.json
Add the following configuration to the file:
{
"mcpServers": {
"airtable-mcp": {
"command": "npx",
"args": [
"@smithery/cli",
"run",
"@rashidazarang/airtable-mcp",
"--token",
"YOUR_AIRTABLE_TOKEN",
"--base",
"YOUR_BASE_ID"
]
}
}
}
Replace YOUR_AIRTABLE_TOKEN
and YOUR_BASE_ID
with your actual credentials
Save the file and restart Claude Desktop
After configuration, open Claude Desktop and wait approximately 30 seconds for the connection to establish. You can then interact with your Airtable data using natural language.
Here are the key tools you can use through natural language:
Tool Name | Description | Example Usage |
---|---|---|
list_bases |
List all accessible Airtable bases | "Show me all my Airtable bases" |
list_tables |
List all tables in the current base | "What tables are in this base?" |
list_records |
List records with optional filtering | "Show me all records in the Projects table" |
get_record |
Get a specific record | "Get record ABC123 from Tasks table" |
create_records |
Create new records | "Create a new record in Contacts with name John" |
update_records |
Update existing records | "Update status to Complete in record XYZ" |
set_base_id |
Switch to a different base | "Switch to base appi7fWMQcB3BNzPs" |
Here are some examples of how to interact with your Airtable data:
Connection Problems
node -v
(should be v14 or higher)JSON Configuration Errors
Command Not Found Errors
npm install -g npm@latest
npx @smithery/cli --version
If problems persist, try fully closing and reopening Claude Desktop, or check if your Airtable API token has the necessary permissions for the operations you're attempting.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.