.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/domdomegg/airtable-mcp-server
home/mcp-servers/domdomegg/airtable-mcp-server
domdomegg avatar

airtable-mcp-server

bydomdomegg· 2 MCP servers

Installs

11k

Stars

455

Forks

134

Category

AI Agents & MCP

View on GitHub

TL;DR

A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records.

How to install airtable-mcp-server?

domdomegg/airtable-mcp-server
$git clone https://github.com/domdomegg/airtable-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install airtable-mcp-server by running `git clone https://github.com/domdomegg/airtable-mcp-server`, then use it for the current task and follow its documentation at https://github.com/domdomegg/airtable-mcp-server.

Files · 1

View on GitHub
README.md
1# airtable-mcp-server
2 
3A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and write records.
4 
5https://github.com/user-attachments/assets/c8285e76-d0ed-4018-94c7-20535db6c944
6 
7## Installation
8 
9Follow the instructions on [install-mcp](https://adamjones.me/install-mcp/?config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImFpcnRhYmxlLW1jcC1zZXJ2ZXIiXSwibmFtZSI6ImFpcnRhYmxlIiwiZW52Ijp7IkFJUlRBQkxFX0FQSV9LRVkiOiJwYXQxMjMuYWJjMTIzIn19), which generates the right config for your MCP client (Claude Code, Claude Desktop, Cursor, Cline, VS Code, and more).
10 
11You'll need an Airtable personal access token — [create one here](https://airtable.com/create/tokens/new) with scopes `schema.bases:read` and `data.records:read` (and optionally `schema.bases:write`, `data.records:write`, `data.recordComments:read`, `data.recordComments:write`), and access to the bases you want to use. It looks something like `pat123.abc123` (but longer). Set it as `AIRTABLE_API_KEY` (replacing the placeholder in the generated config).
12 
13## Components
14 
15### Tools
16 
17- **list_records**
18 - Lists records from a specified Airtable table
19 - Input parameters:
20 - `baseId` (string, required): The ID of the Airtable base
21 - `tableId` (string, required): The ID of the table to query
22 - `maxRecords` (number, optional): Maximum number of records to return. Defaults to 100.
23 - `filterByFormula` (string, optional): Airtable formula to filter records
24 
25- **search_records**
26 - Search for records containing specific text
27 - Input parameters:
28 - `baseId` (string, required): The ID of the Airtable base
29 - `tableId` (string, required): The ID of the table to query
30 - `searchTerm` (string, required): Text to search for in records
31 - `fieldIds` (array, optional): Specific field IDs to search in. If not provided, searches all text-based fields.
32 - `maxRecords` (number, optional): Maximum number of records to return. Defaults to 100.
33 
34- **list_bases**
35 - Lists all accessible Airtable bases
36 - No input parameters required
37 - Returns base ID, name, and permission level
38 
39- **list_tables**
40 - Lists all tables in a specific base
41 - Input parameters:
42 - `baseId` (string, required): The ID of the Airtable base
43 - `detailLevel` (string, optional): The amount of detail to get about the tables (`tableIdentifiersOnly`, `identifiersOnly`, or `full`)
44 - Returns table ID, name, description, fields, and views (to the given `detailLevel`)
45 
46- **describe_table**
47 - Gets detailed information about a specific table
48 - Input parameters:
49 - `baseId` (string, required): The ID of the Airtable base
50 - `tableId` (string, required): The ID of the table to describe
51 - `detailLevel` (string, optional): The amount of detail to get about the table (`tableIdentifiersOnly`, `identifiersOnly`, or `full`)
52 - Returns the same format as list_tables but for a single table
53 - Useful for getting details about a specific table without fetching information about all tables in the base
54 
55- **get_record**
56 - Gets a specific record by ID
57 - Input parameters:
58 - `baseId` (string, required): The ID of the Airtable base
59 - `tableId` (string, required): The ID of the table
60 - `recordId` (string, required): The ID of the record to retrieve
61 
62- **create_record**
63 - Creates a new record in a table
64 - Input parameters:
65 - `baseId` (string, required): The ID of the Airtable base
66 - `tableId` (string, required): The ID of the table
67 - `fields` (object, required): The fields and values for the new record
68 
69- **update_records**
70 - Updates one or more records in a table
71 - Input parameters:
72 - `baseId` (string, required): The ID of the Airtable base
73 - `tableId` (string, required): The ID of the table
74 - `records` (array, required): Array of objects containing record ID and fields to update
75 
76- **delete_records**
77 - Deletes one or more records from a table
78 - Input para

Preview

domdomegg/airtable-mcp-serverdomdomegg/airtable-mcp-server

# airtable-mcp-server

A Model Context Protocol server that provides read and write access to Airtable databases. This server enables LLMs to inspect database schemas, then read and w

https://github.com/user-attachments/assets/c8285e76-d0ed-4018-94c7-20535db6c944

## Installation

Repodomdomegg/airtable-mcp-server
TypeMCP Servers
CategoryAI Agents & MCP
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPairtablemcp-server

Related

6 picks
Type
  1. langchain-ai avatarlangchain-mcp-adaptersMake Anthropic Model Context Protocol (MCP) tools compatible with LangChain and LangGraph agents.MCP ServersJul 20267.0M3.6k
  2. openclaw avatarmcporterTypeScript runtime and CLI for connecting to configured Model Context Protocol servers.MCP ServersJul 20262.5M4.8k
  3. sparfenyuk avatarmcp-proxyA MCP server which proxies requests to a remote MCP server over streamable HTTP or SSE.MCP ServersJul 20262.2M2.7k
  4. sooperset avatarmcp-atlassianThe Model Context Protocol (MCP) Atlassian integration is an open-source implementation that bridges Atlassian products (Jira and Confluence) with AI language models following Anthropic's MCP specification.MCP ServersJul 20261.7M5.6k
  5. open-webui avataropen-webuiOpen WebUIMCP ServersJul 20261.4M147k
  6. dyoshikawa avatarrulesyncUnified AI rules management CLI tool that generates configuration files for various AI development toolsMCP ServersJul 2026889k1.3k