Airtable MCP Server for Claude
Read and write records, manage bases and tables in Airtable directly from Claude
Author
domdomegg
Added
2025-09-18
Setup time
2 minutes
Difficulty
beginner
Quick use
Install command
1 linesclaude mcp add airtable --env AIRTABLE_API_KEY=YOUR_KEY -- npx -y airtable-mcp-server && claude mcp listClaude config
.claude/settings.json
12 lines{
"airtable": {
"env": {
"AIRTABLE_API_KEY": "${AIRTABLE_API_KEY}"
},
"args": [
"-y",
"airtable-mcp-server"
],
"command": "npx"
}
}Source asset
json
12 lines{
"airtable": {
"env": {
"AIRTABLE_API_KEY": "${AIRTABLE_API_KEY}"
},
"args": [
"-y",
"airtable-mcp-server"
],
"command": "npx"
}
}Section
Overview
Expand
Section
Overview
Read and write records, manage bases and tables in Airtable directly from Claude
Section
Content
Expand
Section
Content
Connect Claude to Airtable databases for seamless data management and automation of your bases and tables.
Section
Features
Expand
Section
Features
- Read and write records in Airtable bases
- Create and manage tables with full schema control
- Query and filter data with complex conditions
- Update multiple records in batch operations
- Access metadata and schema information
- Advanced Airtable base and table management with automatic schema detection, field type validation, and relationship mapping for complex data structures
- Batch operations support for efficient bulk record creation, updates, and deletions with automatic rate limit handling and retry logic
- Real-time data synchronization capabilities with webhook integration support for monitoring base changes and triggering automated workflows
Section
Use Cases
Expand
Section
Use Cases
- Automate data entry and updates across multiple bases
- Generate reports from Airtable data with AI analysis
- Sync data between Airtable and other systems
- Bulk operations on records for data cleaning
- Create dynamic dashboards from Airtable content
- Build automated data pipelines that sync external data sources with Airtable bases for real-time data management and reporting
Section
Installation
Expand
Section
Installation
Claude Code
- claude mcp add airtable --env AIRTABLE_API_KEY=YOUR_KEY -- npx -y airtable-mcp-server
- Verify installation: claude mcp list
- Test connection: claude mcp status airtable
Claude CodeDetails
- claude mcp add airtable --env AIRTABLE_API_KEY=YOUR_KEY -- npx -y airtable-mcp-server
- Verify installation: claude mcp list
- Test connection: claude mcp status airtable
Claude DesktopDetails
- Get your Airtable API key from https://airtable.com/account
- Open Claude Desktop configuration file
- Add the Airtable server configuration with your API key
- Restart Claude Desktop
Section
Requirements
Expand
Section
Requirements
- Node.js 18+ installed for running npx commands and MCP server packages
- Airtable Personal Access Token (PAT) from https://airtable.com/account
- Required API scopes: data.records:read (minimum), data.records:write (for updates), schema.bases:read (for schema operations)
- Base ID for the Airtable base you want to access (starts with 'app' prefix)
- Editor or creator permissions on the target base (required for write operations)
- Internet connection for accessing Airtable API (https://api.airtable.com)
- npm or npx available for installing the airtable-mcp-server package
- Understanding of Airtable base structure (tables, fields, record IDs)
- Rate limit awareness: 5 requests/second per base, 50 requests/second per user account
- Claude Desktop 0.7.0+ or Claude Code with MCP support
Section
Examples
Expand
Section
Examples
Read all records from the Projects table
Common usage pattern for this MCP server
Read all records from the Projects tableDetails
Common usage pattern for this MCP server
Ask Claude: "Read all records from the Projects table"
Add a new contact with these details to AirtableDetails
Common usage pattern for this MCP server
Ask Claude: "Add a new contact with these details to Airtable"
Update the status field for all overdue tasksDetails
Common usage pattern for this MCP server
Ask Claude: "Update the status field for all overdue tasks"
Filter records where status='active' AND priority=...Details
Common usage pattern for this MCP server
Ask Claude: "Filter records where status='active' AND priority='high'"
Query Records with FilteringDetails
Query Airtable records using formula-based filtering to retrieve specific data subsets
// Query Airtable records with formula filtering
const records = await airtable.query({
baseId: 'appXXXXXXXXXXXXXX',
table: 'Projects',
filterByFormula: "{Status} = 'Active'",
maxRecords: 100
});
Section
Security
Expand
Section
Security
- Use read-only API keys when write access isn't needed
- Limit access to specific bases when possible
- Regularly rotate API keys for security
- Monitor API usage through Airtable dashboard
- Airtable API tokens and personal access tokens must be securely stored and never exposed in client-side code or public repositories - use environment variables and secure credential management
- OAuth access tokens should be used for third-party integrations instead of personal access tokens to ensure proper access control and token lifecycle management
- Airtable base IDs and table names may expose data structure and organization information - ensure base IDs are kept private and not shared in public configurations
- Rate limiting and API quota management are critical for Airtable MCP servers - implement proper rate limit handling, retry logic, and quota monitoring to prevent service disruption
- Airtable webhook configurations and payloads may contain sensitive data - ensure webhook endpoints are properly secured with authentication and HTTPS encryption
Section
Troubleshooting
Expand
Section
Troubleshooting
Authentication failed with 401 Unauthorized error
Verify Personal Access Token at https://airtable.com/account has correct scopes. Ensure token grants access to specific base. Check AIRTABLE_API_KEY environment variable matches your PAT.
Authentication failed with 401 Unauthorized errorDetails
Verify Personal Access Token at https://airtable.com/account has correct scopes. Ensure token grants access to specific base. Check AIRTABLE_API_KEY environment variable matches your PAT.
Rate limit exceeded - 5 requests per second throttlingDetails
Implement 200ms delay between requests (5 req/sec limit). Use batch endpoints to update 10 records per request. Consider batching to achieve 50 updates/second maximum throughput.
Base or table not found with 404 errorDetails
Verify base ID starts with 'app' prefix. Check table name is exact case-sensitive match. Confirm PAT has base-level permissions granted at https://airtable.com/account.
Field validation errors when creating or updating recordsDetails
Match field types exactly (text, number, single select, etc). Provide all required fields. Use GET request to table schema to verify field names, types, and validation rules.
Airtable MCP server authentication errors with personal access tokensDetails
Verify token is valid and not expired. Check token scopes match required permissions. Ensure token format is correct (Bearer token in Authorization header). For OAuth integrations, verify token refresh logic is working correctly.
Rate limit errors when querying large Airtable basesDetails
Implement exponential backoff retry logic with jitter. Use batch operations to reduce API calls. Cache frequently accessed data. Monitor rate limit headers and adjust request frequency accordingly.
Airtable base schema changes breaking MCP server operationsDetails
Implement schema validation and versioning. Use Airtable's schema API to detect changes. Add error handling for missing fields or changed field types. Consider using field IDs instead of field names for stability.
Airtable MCP server connection timeouts or network errorsDetails
Check network connectivity and firewall settings. Verify Airtable API endpoints are accessible. Increase request timeout values. Implement connection pooling and retry mechanisms with exponential backoff.
0% complete