
Airtable
- 29 repo stars
- Updated May 12, 2026
- mcparmory/registry
com.mcparmory/airtable is an MCP server that creates, reads, updates, and deletes records in Airtable bases and tables from your agent.
About
com.mcparmory/airtable is an MCP server that performs create, read, update, and delete operations against Airtable bases and tables over stdio. Developers often use Airtable as the first system of record for waitlists, feature backlogs, and customer feedback before investing in Postgres. This server lets your coding agent sync records, fix data issues, or scaffold integrations while you implement the product—reducing manual copy-paste between the base UI and your repo. It is an integration tool, not a replacement for schema design or migration planning. You need an Airtable personal access token with appropriate base scopes, plus uvx or Docker to run the mcparmory package. Once registered in Claude Code, Cursor, or Windsurf, prompts can target specific bases and tables with structured outcomes: updated rows, seeded test data, or automation-friendly CRUD from the terminal session.
- Full record lifecycle: create, read, update, and delete in Airtable bases and tables
- stdio MCP via uvx mcparmory-airtable or Docker ghcr.io/mcparmory/airtable:1.0.3
- Fits lightweight CRM, content calendars, and validation prototypes without a custom DB
- Registry package version 1.0.3 from github.com/mcparmory/registry
- Agent-driven bulk or scripted table updates during feature work
Airtable by the numbers
- Data as of Jul 26, 2026 (Skillselion catalog sync)
claude mcp add mcparmory-airtable -- uvx mcparmory-airtableAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 29 |
|---|---|
| Package | mcparmory-airtable |
| Transport | STDIO |
| Auth | None |
| Last updated | May 12, 2026 |
| Repository | mcparmory/registry ↗ |
What it does
Let your agent create, read, update, and delete Airtable records while you scaffold ops dashboards, CRM-lite bases, and lightweight backends.
Who is it for?
Best when you use Airtable as a living database during MVP build, agent automations, and light internal tooling.
Skip if: Production apps that need transactional SQL, complex relational queries, or teams standardized on Postgres-only backends.
What you get
After registration, your agent can CRUD Airtable rows directly so prototypes, waitlists, and internal tools stay in sync with code changes.
- Synchronized Airtable records from agent-driven workflows
- Seeded or corrected rows in target bases and tables
- Repeatable CRUD patterns for MVP ops without custom admin UI
By the numbers
- Server version 1.0.3
- 2 packages: PyPI mcparmory-airtable (uvx) and OCI ghcr.io/mcparmory/airtable:1.0.3
- stdio transport in server.schema.json manifest
README.md
MCP Armory Registry
Production-ready MCP servers for popular APIs, generated by MCP Blacksmith.
Servers · Install & Usage · Features · How it works · License
MCP servers that connect AI agents to real-world APIs. Each server is a standalone Python package — generated from the upstream OpenAPI spec using MCP Blacksmith and tested against the live API before release. Hosted on MCP Armory or run independently.
Servers
🧠 AI & Machine Learning ElevenLabs · Linkup · Parallel · Perplexity AI · Ragie · Replicate
📊 Analytics Ahrefs · Datadog · Google Analytics · Google Search Console · Linkly · Mixpanel · PostHog
⛓️ Blockchain & Crypto Alchemy NFT
💼 CRM & Sales Apollo
💬 Communication Atlassian Confluence · Google Gmail · MailerSend · Mailtrap · Postmark · Resend · Slack
🗄️ Data & Databases Enigma · Pinecone
🛠️ Developer Tools AgentQL · Apify · Bitbucket · Bright Data · Browserbase · BuiltWith · Canvas · CircleCI · Codacy · Contentful Management · ConvertAPI · E2B · Firecrawl · GitHub · GitLab · LaunchDarkly · Postman · Scrapingant · Semrush AppCenter · Sentry
📄 Documents & Printing PDF.co
🛒 E-commerce Shopify Admin
💰 Finance Alpha Vantage · Polygon · Ramp
👥 HR & Recruiting BambooHR
☁️ Infrastructure Globalping · Grafana · PagerDuty · Rootly · Runpod
⚖️ Legal & Compliance NetLicensing
🗺️ Maps & Location Google Maps Platform · IP2Location.io IP Geolocation · OpenCage Geocoding
📣 Marketing Customer.io Journeys Track · Klaviyo
🎬 Media & Entertainment Canva · Perigon
✅ Productivity Airtable · Asana · Atlassian Jira · ClickUp · Figma · Google Sheets · Miro · Notion · Outline · Shortcut
🔍 Search Algolia Search · Google Search
📦 Storage Box · Files.com · Google Drive
📌 Other Close
More servers are being added continuously.
Install & Usage
Every server is a standalone PyPI package (mcparmory-<server-name>). Each server's own README.md has full credential setup and configuration instructions.
# With uvx (no install needed)
uvx mcparmory-github
# With pip
pip install mcparmory-github
mcparmory-github
MCP client configuration (Claude Desktop, Cursor, Codex, Claude Code):
{
"mcpServers": {
"github": {
"command": "uvx",
"args": ["mcparmory-github"],
"env": {
"BEARER_TOKEN": "ghp_your_token_here"
}
}
}
}
Features
Every server in this registry provides:
- Full API coverage — all endpoints from the OpenAPI spec are exposed as MCP tools
- Authentication — API key, Bearer token, Basic auth, OAuth2, JWT, OpenID Connect, and mutual TLS
- Multi-auth — servers that support multiple auth methods let you configure whichever you prefer
- Pydantic validation — request parameters are validated before sending to the API
- Resilience — configurable retries with exponential backoff, connection pooling, and timeouts
- Response sanitization — optional redaction of sensitive fields from API responses
How servers are generated
Servers are generated by MCP Blacksmith, an automated pipeline that:
- Parses an OpenAPI specification
- Transforms operations through LLM-driven passes (naming, parameter filtering, enhancement, classification)
- Generates a complete MCP server with auth, models, validation, and configuration
- Tests every tool against the live API using an autonomous agent
- Deploys passing servers to this registry
The generator targets Python 3.11+ and uses FastMCP as the MCP framework.
Contributing
Servers are auto-generated — don't edit server code directly. If you find an issue, open a GitHub Issue describing:
- Broken or deprecated endpoints
- Missing or incorrect parameters
- Authentication problems
- Incorrect request/response models
We'll re-generate the affected server with the fix. To request a new server, open an issue with a link to the API's OpenAPI spec or documentation.
License
Each generated server is released under the MIT License. The underlying APIs have their own terms of service — see individual server READMEs for details.
Recommended MCP Servers
How it compares
Airtable CRUD MCP bridge, not a spreadsheet skill or full ORM code generator.
FAQ
Who is com.mcparmory/airtable for?
Developers and small teams who run ops or product data in Airtable and want Claude Code, Cursor, or Codex to manage records without manual UI edits.
When should I use com.mcparmory/airtable?
Use it while building integrations, seeding validation bases, syncing user signups, or patching table data during feature implementation.
How do I add com.mcparmory/airtable to my agent?
Configure MCP stdio with uvx for mcparmory-airtable or the ghcr.io/mcparmory/airtable:1.0.3 image, set AIRTABLE_API_KEY (or equivalent) per registry instructions, and restart your agent host.