← Index

Airtable

io.github.domdomegg/airtable-mcp-server·v1.13.0·Other
Quality Score
98
/100

Read and write access to Airtable database schemas, tables, and records.

§01  Install
Claude Desktop (claude_desktop_config.json)
{
  "mcpServers": {
    "airtable-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "airtable-mcp-server"
      ],
      "env": {
        "AIRTABLE_API_KEY": "<your-airtable_api_key>"
      }
    }
  }
}
Cursor (.cursor/mcp.json)
{
  "mcpServers": {
    "airtable-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "airtable-mcp-server"
      ],
      "env": {
        "AIRTABLE_API_KEY": "<your-airtable_api_key>"
      }
    }
  }
}
Cline (cline_mcp_settings.json)
npx -y airtable-mcp-server
Claude Desktop (Docker)
{
  "mcpServers": {
    "airtable-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "docker.io/domdomegg/airtable-mcp-server:1.13.0"
      ],
      "env": {
        "AIRTABLE_API_KEY": "<your-airtable_api_key>"
      }
    }
  }
}
§02  Environment variables
AIRTABLE_API_KEY
requiredsecret

Airtable personal access token (e.g., pat123.abc123). Create at https://airtable.com/create/tokens/new with scopes: schema.bases:read, data.records:read, and optionally schema.bases:write and data.records:write.

AIRTABLE_API_KEY
requiredsecret

Airtable personal access token (e.g., pat123.abc123). Create at https://airtable.com/create/tokens/new with scopes: schema.bases:read, data.records:read, and optionally schema.bases:write and data.records:write.

§03  MCP Quality Score  ·  methodology
freshness
23
completeness
25
installability
25
documentation
15
stability
10
§04  Alternatives in Other