By domdomeggCreated 24 days ago
starstarstarstarstar

Read and write access to Airtable databases.

Visit Project
Share this MCP:
X (Formerly Twitter)RedditblueskyThreads by Instagram

Category

Official MCP Server

Tags

AirtableDatabaseApiMcp ServerData Management

What is Airtable MCP Server?

The Airtable MCP Server is a Model Context Protocol (MCP) server that provides read and write access to Airtable databases. It enables language models (LLMs) to interact with Airtable data, including inspecting database schemas and performing CRUD operations on records, tables, and fields.

How to use Airtable MCP Server?

To use this server with the Claude Desktop app, you need to:

  1. Obtain an Airtable personal access token with appropriate permissions (at least schema.bases:read and data.records:read)
  2. Add the server configuration to your claude_desktop_config.json file:
{
  "mcpServers": {
    "airtable": {
      "command": "npx",
      "args": ["-y", "airtable-mcp-server"],
      "env": {
        "AIRTABLE_API_KEY": "your_airtable_token"
      }
    }
  }
}

Key features of Airtable MCP Server

  • Comprehensive Airtable interaction - Full CRUD operations for records, tables, and fields
  • Schema inspection - Access to base and table schemas
  • Flexible filtering - Support for Airtable's filterByFormula
  • Batch operations - Update and delete multiple records at once
  • Table manipulation - Create, update, and delete tables and fields

Use cases of Airtable MCP Server

  1. Building AI assistants that can create and update Airtable records
  2. Automating data entry and management workflows
  3. Generating reports from Airtable data
  4. Creating custom Airtable base configurations programmatically
  5. Migrating data between Airtable bases

FAQ from Airtable MCP Server

  • What permissions does my Airtable token need?

    At minimum, you need schema.bases:read and data.records:read. For write operations, you'll need the corresponding write permissions.

  • How do I find my Airtable base and table IDs?

    You can find them in the URL of your Airtable or through the API documentation.

  • Can I use this with the Airtable REST API?

    Yes, this server wraps the Airtable REST API with additional MCP-specific functionality.

  • Is this an official Airtable product?

    No, this is an open-source project by the community, not an official Airtable product.