This MCP server provides tools for programmatic interaction with Airtable's API, allowing you to manage bases, tables, fields, and records through Claude Desktop or other MCP clients. It features a specialized implementation that builds tables in stages to minimize failures when creating complex table structures.
node --version
npm --version
Navigate to the Claude configuration directory:
C:\Users\NAME\AppData\Roaming\Claude
~/Library/Application Support/Claude/
Create or edit claude_desktop_config.json
:
{
"mcpServers": {
"airtable": {
"command": "npx",
"args": ["@felores/airtable-mcp-server"],
"env": {
"AIRTABLE_API_KEY": "your_api_key_here"
}
}
}
}
Note: For Windows paths, use double backslashes (\\) or forward slashes (/).
Install @felores/airtable-mcp-server set the environment variable AIRTABLE_API_KEY to 'your_api_key'
List all bases
singleLineText
: Single line text fieldmultilineText
: Multi-line text areaemail
: Email address fieldphoneNumber
: Phone number fieldnumber
: Numeric field with optional precisioncurrency
: Money field with currency symboldate
: Date field with format optionssingleSelect
: Single choice from optionsmultiSelect
: Multiple choices from optionsAvailable colors for select fields:
blueBright
, redBright
, greenBright
yellowBright
, purpleBright
, pinkBright
grayBright
, cyanBright
, orangeBright
blueDark1
, greenDark1
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.