Airtable MCP
Airtable integration with schema inspection and read and write record access, backed by a personal access token.
Delv Safety Grade: B
Score 72/100 · assessed 2026-04-18
Airtable MCP is a community server by solo developer Adam Jones (domdomegg) that provides full read-write access to Airtable bases via personal access token. The implementation is clean and distributed through npm with standard installation, making supply chain risk moderate. The maintainer has reasonable GitHub activity but this is a single-person project with bus factor concerns. Permissions are moderately scoped: it can read and write database records plus inspect schemas, but access is limited to whatever the PAT allows in Airtable's own permission model. The token lives in environment variables which is appropriate, though it grants broad access to all bases the token can reach. Documentation is adequate and the code is open source. No known security incidents. The main risk is the combination of solo maintenance and write access to potentially business-critical data stores.
Green flags
- Distributed via npm with standard versioning
- Open source with clear repository and documentation
- Schema inspection reduces blind write failures
- Uses Airtable's native permission model for scoping
- No known security incidents or credential leaks
Red flags
- Solo maintainer with bus factor risk
- Full write access to Airtable bases within token scope
- Personal access token grants broad multi-base access
- Limited community review for database write operations
Permissions requested
Install
npx -y airtable-mcp-server
AIRTABLE_API_KEYReview
Install this if you treat Airtable as a working database and want Claude to read or write records without manual copy-paste. Skip it if your bases are static or you're not comfortable managing API tokens. It's a solid, no-frills integration that does exactly what it claims.
Good at
- Schema inspection lets Claude see what fields and types exist before writing, which prevents most common errors.
- Works with any Airtable base you can generate a token for, no special setup on the Airtable side.
- Read and write access means you can build two-way workflows, not just pull data out.
- Straightforward token-based auth with no OAuth dance or webhook configuration.
Watch out
- No built-in rate limiting, so you'll hit Airtable's API limits if you're doing bulk operations without pacing.
- Requires record IDs for updates, which means you often need a query step before modifying a specific record.
- Personal access tokens expire and need manual rotation, which can break workflows silently.
- Limited to Claude Desktop, Cursor, and Claude Code unless you configure other hosts manually.
Use cases
- CRM updates
- inventory management
- no-code workflows
- record enrichment
Getting started
Works with
Similar MCPs
- NeonNeon's official MCP for serverless Postgres. Manage projects, branches, and run SQL against any of your databases.
- SupabaseSupabase's official MCP — query Postgres, manage auth, inspect storage buckets, all from your agent.
- PostgresQuery Postgres databases with natural language. Read-only access by default - the agent sees your schema and runs SELECT queries safely.
- ClickHouseClickHouse MCP for fast analytical queries. Built by ClickHouse Inc, supports cluster topology discovery.