Turn your Airtable bases into an AI-queryable database — create, update, search, and analyze records with natural language.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"airtable": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-airtable",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the list_bases tool to list all airtable bases the authenticated user has access to”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Manage Airtable bases, tables, and records through natural language.
Airtable is the flexible database-spreadsheet hybrid teams use to track projects, CRM pipelines, inventory, and more. This MCP server gives your AI agents full read/write access to any base you connect — querying, creating, and updating records without anyone opening the Airtable UI. Connect it once and every agent in your workspace can work with your Airtable data.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-airtable
| Tool | Description |
|---|---|
list_bases | List all Airtable bases the authenticated user has access to |
list_tables | List tables in a base with their field schemas |
list_records | List records from a table with optional filtering and sorting |
get_record | Get a single record by ID |
create_record | Create a new record in a table |
update_record | Update fields of an existing record |
search_records | Search records using an Airtable formula filter |
| Variable | Required | Description | How to Get |
|---|---|---|---|
AIRTABLE_API_KEY | Yes | Personal access token for Airtable API | airtable.com → Account → Developer Hub → Personal access tokens → Create token with data.records:read, data.records:write, schema.bases:read scopes |
AIRTABLE_API_KEY under Project → SecretsOnce added, every AI agent in your workspace can call Airtable tools automatically — no per-user setup needed.
"List all records in the Leads table where Status is New"
"Create a new task in my Project Tracker base assigned to Sarah, due next Friday"
"Search the Inventory base for any products where stock quantity is less than 10"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-airtable \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-AIRTABLE-API-KEY: your-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_bases","arguments":{}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-airtable
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Pages, databases, blocks, search via Notion's official MCP
by @aerostack
Query collections, insert documents, and run aggregation pipelines on your MongoDB Atlas database — AI-native document database access.
by @aerostack
Get, set, and manage keys, hashes, and lists in your Upstash Redis database — AI-native key-value store access.
by @aerostack
Query Postgres tables, manage storage buckets, and interact with your Supabase backend — AI-native database access.
by @aerostack
Execute SQL queries, manage tables, and interact with your Turso (LibSQL) edge database — AI-native SQLite at the edge.
by @aerostack
Query, put, update, delete, and scan items in Amazon DynamoDB tables — AI-native NoSQL database access for any agent.
Yes. The Airtable MCP includes a create_record tool that lets Claude create records in your Airtable account from a plain-English prompt. You can also update and delete records — no Airtable UI needed.
Yes. The Airtable MCP has search and list tools for records. Ask Claude to find records by any criteria and it runs the Airtable API query for you, returning results directly in the conversation.
Yes. The Airtable MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 7 Airtable tools are available everywhere you connect it — install once on Aerostack.
Yes. The Airtable MCP includes tools to update records in your Airtable account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Airtable API.