Airtable MCP Server
Allows reading, creating, updating, and searching records in an Airtable base.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Airtable MCP Serverlist the first 10 records from the Leads table"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Airtable MCP Server
A Model Context Protocol server that lets Claude (or any MCP client) read, create, update, and search records in an Airtable base through your own API key.
It exposes five tools over stdio:
Tool | What it does |
| List records from a table, with optional view, page size, max records, and an Airtable |
| Fetch a single record by its ID. |
| Create a record from a |
| Update selected fields on an existing record. |
| Case-insensitive substring search on one field. |
Why
Airtable is where a lot of small teams keep their CRM, content calendar, or ops tracker. This server puts that data one instruction away from Claude — "add a lead for Acme Corp", "which deals are still open?" — without exporting anything or writing glue code per question.
Related MCP server: MCP Airtable Server
Requirements
Node.js 18+ (uses the built-in
fetch)An Airtable personal access token with
data.records:readanddata.records:writescopesThe base ID of the base you want to expose (from the base URL:
airtable.com/appXXXXXXXXXXXXXX/...)
Install & build
git clone https://github.com/medlag/airtable-mcp-server.git
cd airtable-mcp-server
npm install
npm run buildConfiguration
The server reads two required environment variables:
Variable | Required | Description |
| yes | Airtable personal access token. |
| yes | ID of the base to operate on. |
| no | Override the API base URL (defaults to |
Copy .env.example to .env for local runs, or set the variables in your MCP client config (below). The token is only ever read from the environment — it is never logged or written to disk.
Use it with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"airtable": {
"command": "node",
"args": ["/absolute/path/to/airtable-mcp-server/dist/index.js"],
"env": {
"AIRTABLE_API_KEY": "patXXXXXXXXXXXXXX.XXXXXXXX",
"AIRTABLE_BASE_ID": "appXXXXXXXXXXXXXX"
}
}
}
}Restart Claude Desktop; the five tools appear under the plug icon.
Use it with Claude Code
claude mcp add airtable \
--env AIRTABLE_API_KEY=patXXXXXXXXXXXXXX.XXXXXXXX \
--env AIRTABLE_BASE_ID=appXXXXXXXXXXXXXX \
-- node /absolute/path/to/airtable-mcp-server/dist/index.jsExample prompts
Once connected, you can ask things like:
"List 10 rows from the Leads table."
"Create a record in Tasks with Name 'Ship v1' and Status 'In progress'."
"Find every record in Contacts whose Company contains 'acme'."
"Mark record recABC123 in Tasks as Done."
list_recordsandsearch_recordsreturn a single Airtable page — up to 100 records. Narrow withfilterByFormula, aview, ormaxRecordsrather than expecting the full table.
Design notes
Typed REST wrapper — each Airtable endpoint maps to one method in
src/airtable-client.ts; API errors surface as a structuredAirtableErrorwith the HTTP status and Airtable's own message.stdout is sacred — MCP speaks JSON-RPC over stdout, so all logs go to stderr (
src/logger.ts).Fail fast on config — missing env vars throw a clear message at startup instead of a confusing 401 later (
src/config.ts).Input validation — every tool argument is validated with zod before a request is made.
Development
npm run dev # tsc --watch (build config)
npm run typecheck # type-check src + tests, no emit
npm test # unit tests (Node's built-in runner via tsx)Testing
The suite runs on Node's built-in test runner — no test framework dependency — and covers the logic that must not regress:
config— missing/blank env vars fail fast; values are trimmed; the API URL override is honoured.formula—search_recordsescapes backslashes and double quotes, and the field name is validated at the tool boundary, so a crafted value or field can't break out of the Airtable formula (injection guard).airtable-client— GET/POST/PATCH shapes, bearer auth, query-string building, and both error paths (non-2xx →AirtableErrorwith the API's message and status; transport failure → status0). Thefetchimplementation is injected, so these run offline.
CI runs typecheck → build → test on Node 18, 20, and 22.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/medlag/airtable-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server