airtable-user-mcp
The airtable-user-mcp server provides 62 tools for comprehensive Airtable management, leveraging Airtable's internal API to cover features beyond the official REST API.
Schema & Read (9 tools)
Get full base schema, list tables, get table/field/view details, and retrieve detailed view configuration (filters, sorts, grouping, column order, visibility, row height, etc.)
Table Management (3 tools)
Create, rename, and delete tables (delete requires an
expectedNamesafety guard)
Field Management (8 tools)
Create any field type, including computed fields (formula, rollup, lookup, count) not supported by the official API
Validate formula expressions, update field config/formulas, rename, update descriptions, duplicate (optionally copying values), and delete fields (with dependency checking)
View Management (20 tools)
Create views (grid, form, kanban, calendar, gallery, gantt, list), duplicate, rename, delete, and update descriptions
Set/append filters (nested AND/OR), apply sorts and grouping (replace or append), show/hide and reorder columns, change row height
Sidebar Sections (4 tools)
Create, rename, move, and delete sidebar sections (deletion auto-promotes contained views)
Record Templates (8 tools)
Create, rename, describe, set cells/columns, duplicate, apply, and delete saved row scaffolds
Form Metadata (2 tools)
Update description, redirect URL, attribution, and branding for legacy form views
Extension Management (7 tools)
Create, install, enable/disable, rename, duplicate, and remove extensions; create dashboard pages
Tool/Profile Management (1 tool)
List and switch profiles (read-only, safe-write, full, custom); toggle individual tools or categories
Provides tools for managing Airtable bases with capabilities not available through the official REST API, including schema inspection, field management (formula/rollup/lookup/count fields), view configuration (filters, sorts, grouping), field metadata management, and extension management.
Supports integration with the Amp IDE as one of the AI-enabled editors where the MCP server can be auto-configured through the VS Code extension.
Airtable Formulas, Scripts, Automation, MCP & LSP
Formula, script & automation editor · MCP server (62 tools) · Language server · AI skills
Not affiliated with Airtable Inc. This is a community-maintained project.
Experimental — This project is under active development and not intended for production use. APIs, tools, and behavior may change without notice.
Top Features
Feature | What it does | File types |
Formula Editor | Syntax highlighting, IntelliSense, beautify / minify |
|
Script Editor | Completions, hover docs, diagnostics |
|
Automation Editor | Completions, hover docs, diagnostics |
|
MCP Server (62 tools) | Full Airtable internal API — schema, views, fields, extensions, templates | — |
Language Server (LSP) | Standalone multi-editor support — Neovim, Zed, Helix, OpenCode | All above |
IDE Auto-Setup | One-click MCP config for Cursor, Windsurf, Claude Desktop, Cline, Amp | — |
AI Skills | Pre-built Airtable-specific rules and workflows for AI coding assistants | — |
Daemon + Tunnel | Persistent background server; optional Cloudflare or ngrok remote access | — |
Tool Profiles |
| — |
OS Keychain Auth | Browser-based Airtable login with SSO/2FA — credentials in your OS keychain | — |
Why this exists
Airtable's public Web API has never exposed some of the most common tasks builders actually need: creating a formula field, tweaking a view's filter set, installing an extension, or validating a formula before it breaks production. The official Airtable MCP server is a thin wrapper over that same REST API, so it inherits every one of those gaps.
airtable-user-mcp is an add-on to the official Airtable MCP, not a replacement. It uses Airtable's own internal API (the one the web UI uses) to cover exactly the surface area the REST API can't reach. Register both servers in your AI client and your assistant gets the full Airtable automation experience — records over HTTP via the official MCP, plus schema, formulas, views, and extensions via this one.
What airtable-user-mcp adds on top of the official Airtable MCP
This is a coverage map, not a "pick one" decision — the two servers are complementary and designed to run side-by-side.
Capability | Official Airtable MCP | airtable-user-mcp |
Total tools | ~17 | 62 |
Auth model | Personal Access Token or OAuth, per-scope setup | Log in once with your normal Airtable account (SSO/2FA supported) |
Transport | HTTP (remote) | stdio (local, private) |
Data never leaves your machine | ❌ Requests go through | ✅ Runs locally against Airtable's API |
Schema read (bases, tables, fields, views) | Partial (no view config) | Full — filters, sorts, groups, visibility, row height, descriptions |
Create formula fields | ❌ | ✅ |
Create rollup fields | ❌ | ✅ |
Create lookup / multipleLookupValues fields | ❌ | ✅ |
Create count fields | ❌ | ✅ |
Update formula text of an existing field | ❌ | ✅ |
Validate a formula before applying | ❌ | ✅ |
Rename / duplicate / safely delete fields | Partial (no duplicate, no dependency summary) | ✅ with |
Create views (grid/form/kanban/calendar/gallery/gantt/list) | ❌ (API has no create-view endpoint) | ✅ |
Set/append view filters (nested AND/OR) | ❌ | ✅ |
Set view sorts | ❌ | ✅ |
Set view grouping | ❌ | ✅ |
Change column order | ❌ | ✅ |
Show/hide columns in a view | ❌ | ✅ |
Change row height | ❌ | ✅ |
Duplicate a view with its full configuration | ❌ | ✅ |
View descriptions, cell wrap, covers, color config, calendar dates, frozen columns | ❌ | ✅ |
Sidebar sections (create, rename, move, delete) | ❌ | ✅ |
Record templates (create, pre-fill, duplicate, apply, delete) | ❌ | ✅ |
Form metadata (description, redirect, attribution, branding) | ❌ | ✅ |
Extension / block management (install, enable, rename, duplicate, remove) | ❌ | ✅ |
Create dashboard pages | ❌ | ✅ |
Tool profiles & per-tool toggles | ❌ | ✅ read-only / safe-write / full / custom |
❌ Explicitly disallowed | ✅ | |
Destructive-action safety guards | Relies on token scopes | ✅ |
Batch record create limit | 10 / request | Uses the same Airtable limit; no added restriction |
VS Code / Cursor / Windsurf / Cline / Amp one-click install | Manual JSON edit per IDE | ✅ One click via the companion extension |
Formula editor with IntelliSense | ❌ | ✅ (VS Code extension) |
Credentials storage | You manage the PAT | OS keychain, auto-refresh |
Plan requirement | Airtable plan with API access + token scopes | Any plan you can log into |
Price | Free | Free, MIT |
Sources: Airtable's official MCP docs, Airtable Web API reference, and the UNSUPPORTED_FIELD_TYPE_FOR_CREATE rollup thread.
Use both MCPs together
airtable-user-mcp is additive. Register the official Airtable MCP following Airtable's setup guide, then add this one alongside it in the same mcpServers block:
{
"mcpServers": {
"airtable-user-mcp": {
"command": "npx",
"args": ["-y", "airtable-user-mcp"]
}
}
}Your MCP client will expose every tool from both servers. The two entries are independent — rename the keys (airtable, airtable-official, airtable-user-mcp, etc.) however makes sense for your workflow.
What's In This Repo
This monorepo ships three products from one source tree:
Product | Install | |
Airtable Formulas, Scripts, Automation, MCP & LSP — VS Code extension | ||
airtable-user-mcp — Standalone MCP server |
| |
airtable-user-lsp — Airtable language server |
|
Demo
Features
VS Code Extension
Formula Editor — Syntax highlighting, IntelliSense, beautify / minify for
.formulafilesMCP Server — One-click MCP registration for multiple IDEs
AI Skills — Auto-install Airtable-specific skills, rules, and workflows for AI coding assistants
Airtable Login — Credentials in OS keychain, browser-based auth with auto-refresh
Dashboard — React webview with Overview, Setup, and Settings tabs
MCP Server (62 Tools)
Manage Airtable bases with capabilities not available through the official REST API:
Category | Tools | Highlights |
Schema Read | 9 | Full schema inspection — bases, tables, fields, views, sidebar sections, record templates |
Table Management | 3 | create / rename / delete tables |
Field Management | 8 | Create formula / rollup / lookup / count fields, validate formulas, update descriptions, delete |
View Configuration | 20 | Filters, sorts, grouping, columns, freezing, row height, covers, color rules, calendar dates, create / duplicate / rename / delete |
Sidebar Sections | 4 | Create, rename, move-into-section, delete (auto-promotes contained views to ungrouped) |
Record Templates | 8 | Create / rename / describe / set cells / set columns / duplicate / apply / delete saved row scaffolds |
Form Metadata | 2 | Description, redirect URL, attribution, copy-to-respondent, branding (legacy form views) |
Extension Management | 7 | Create, install, enable/disable, rename, duplicate, remove extensions |
Tool Management | 1 | List profiles, switch profile, toggle tools/categories (meta-tool, always enabled) |
See the full tool reference in packages/mcp-server/README.md.
LSP Server
airtable-user-lsp is a standalone language server for Airtable formula, script, and automation files — works in any LSP-capable editor, not just VS Code.
# stdio mode — works standalone, no daemon needed
npx airtable-user-lsp --stdioFeatures: diagnostics, completions, hover documentation, and signature help for .formula, .ats, and .ata files.
When the daemon is running, it auto-spawns airtable-user-lsp --tcp so multiple editors share one language server instance. The TCP port is written to ~/.airtable-user-mcp/daemon.lock as port_lsp.
See packages/lsp-server/README.md for per-editor configuration (Neovim, Zed, OpenCode, Helix).
Supported IDEs
The extension auto-configures MCP for all major AI-enabled editors:
Claude Desktop | Claude Code | Cursor | Windsurf | Cline | Amp |
Don't use VS Code? Use the standalone MCP server directly:
npx airtable-user-mcpFind Us
Registry | Link |
VS Code Marketplace | |
npm | |
Open VSX | |
MCP Registry | |
Glama | |
PulseMCP | |
MCP.so | |
Video demo — managing views, computed fields & extensions with Claude Code |
Requirements
VS Code ^1.100.0 (or any fork exposing the
McpServerDefinitionProviderAPI)Node.js — bundled via the VS Code runtime; no separate install needed
Google Chrome (or Edge / Chromium) — the Airtable login flow uses Patchright in headless mode. Falls back to
msedgeon Windows andchromiumon Linux. The extension shows an actionable warning if no supported browser is detected.
Development
This is a pnpm monorepo.
Package | Description |
| VS Code extension host (TypeScript + tsup) |
| React dashboard webview (Vite + Tailwind v4) |
| Shared types and message protocol |
|
|
|
|
| Build tooling (esbuild bundler, dep vendoring) |
pnpm install # install all packages
pnpm build # build shared → webview → mcp bundle → extension
pnpm package # build + create airtable-formula-X.Y.Z.vsix
pnpm test # run all unit tests
pnpm dev # start webview dev server (browser preview)How the MCP server is bundled: scripts/bundle-mcp.mjs esbuilds packages/mcp-server/src/ into packages/extension/dist/mcp/. Then scripts/prepare-package-deps.mjs vendors patchright, patchright-core, and otpauth into dist/node_modules/ before vsce package runs. The VSIX is fully self-contained.
Support This Project
This project is built and maintained with the help of AI coding tools. If you find it useful and want to support continued development (new tools, updates, bug fixes), you can contribute by gifting Claude Code credits — the primary tool used to build this project.
Interested? Open an issue or reach out to discuss feature requests and sponsorship.
License
Maintenance
Latest Blog Posts
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/Automations-Project/VSCode-Airtable-Formula'
If you have feedback or need assistance with the MCP directory API, please join our Discord server