by felores
Airtable MCP Server: programmatically manage Airtable bases, tables, fields, and records via Claude Desktop or other MCP
Provides programmatic access to Airtable bases, tables, fields, and records through the Model Context Protocol. Includes specialized staging capabilities to build complex tables with higher success rates.
Airtable MCP Server is a community-built MCP server published by felores that provides AI assistants with tools and capabilities via the Model Context Protocol. Airtable MCP Server: programmatically manage Airtable bases, tables, fields, and records via Claude Desktop or other MCP It is categorized under databases, developer tools.
You can install Airtable MCP Server in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
NOASSERTION
Airtable MCP Server is released under the NOASSERTION license.
Enable Claude to query your database directly using natural language
Example
Ask 'Show me top 10 customers by revenue this month' and get SQL results instantly
Eliminate manual SQL writing for ad-hoc queries, get insights 10x faster
Generate complex reports and analytics without leaving conversation
Example
Analyze sales trends, cohort retention, user behavior patterns conversationally
Democratize data access—non-technical team members can query databases
Understand database structure, relationships, and data models
Example
'Explain the user_orders table schema and its relationships'
Onboard engineers faster, explore unfamiliar databases efficiently
Share your MCP server with the developer community
Airtable MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, Airtable MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend Airtable MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Strong directory entry: Airtable MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
We evaluated Airtable MCP Server against two servers with overlapping tools; this profile had the clearer scope statement.
I recommend Airtable MCP Server for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
According to our notes, Airtable MCP Server benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Airtable MCP Server is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Airtable MCP Server surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Airtable MCP Server is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
showing 1-10 of 47
A Model Context Protocol server that provides tools for interacting with Airtable's API. This server enables programmatic management of Airtable bases, tables, fields, and records through Claude Desktop or other MCP clients.
This MCP server features a specialized implementation that allows it to build tables in stages, leveraging Claude's agentic capabilities and minimizing the failure rate typically seen in other MCP servers for Airtable when building complex tables. It also includes system prompt and project knowledge markdown files to provide additional guidance for the LLM when leveraging projects in Claude Desktop.
node --version
npm --version
⚠️ Important: Before running, make sure to setup your Airtable API key
Navigate to the Claude configuration directory:
C:\Users\NAME\AppData\Roaming\Claude~/Library/Application Support/Claude/You can also find these directories inside the Claude Desktop app: Claude Desktop > Settings > Developer > Edit Config
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 (/).
mcp-installer is a MCP server to install other MCP servers.
Install @felores/airtable-mcp-server set the environment variable AIRTABLE_API_KEY to 'your_api_key'
Claude will install the server, modify the configuration file and set the environment variable AIRTABLE_API_KEY to your Airtable API key.
If you want to contribute or modify the code run this in your terminal:
# Clone the repository
git clone https://github.com/felores/airtable-mcp.git
cd airtable-mcp
# Install dependencies
npm install
# Build the server
npm run build
# Run locally
node build/index.js
Then modify the Claude Desktop configuration file to use the local installation:
{
"mcpServers": {
"airtable": {
"command": "node",
"args": ["path/to/airtable-mcp/build/index.js"],
"env": {
"AIRTABLE_API_KEY": "your_api_key_here"
}
}
}
}
List all bases
list_bases: List all accessible Airtable baseslist_tables: List all tables in a basecreate_table: Create a new table with fieldsupdate_table: Update a table's name or descriptioncreate_field: Add a new field to a tableupdate_field: Modify an existing fieldlist_records: Retrieve records from a tablecreate_record: Add a new recordupdate_record: Modify an existing recorddelete_record: Remove a recordsearch_records: Find records matching criteriaget_record: Get a single record by its IDsingleLineText: 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, greenBrightyellowBright, purpleBright, pinkBrightgrayBright, cyanBright, orangeBrightblueDark1, greenDark1We welcome contributions to improve the Airtable MCP server! Here's how you can contribute:
Fork the Repository
git clone https://github.com/your-username/airtable-mcp.git
Create a Feature Branch
git checkout -b feature/your-feature-name
Make Your Changes
Commit Your Changes
git add .
git commit -m "feat: add your feature description"
Push to Your Fork
git push origin feature/your-feature-name
Create a Pull Request
Your contributions help make this tool better for everyone. Whether it's:
We appreciate your help in making the Airtable MCP server more powerful and user-friendly!
Made with ❤️ by the Airtable MCP community
Run data quality queries to catch anomalies and inconsistencies
Example
Find duplicate records, missing values, orphaned foreign keys automatically
Maintain data integrity with less manual SQL work
Prerequisites
Time Estimate
15-30 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server acts as bridge between Claude and database, translating natural language to SQL queries and returning results in structured format.
Protocols
Compatibility
✓ Use when
Use for ad-hoc data queries, exploratory analysis, report generation, schema exploration, and democratizing data access. Best for read-heavy analytics workloads.
✗ Avoid when
Avoid for production write operations, mission-critical transactions, real-time OLTP workloads, or when database contains sensitive PII without proper access controls. Use read replicas, not primary.