Skip to main content
Glama
medlag

Airtable MCP Server

by medlag

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AIRTABLE_API_KEYYesAirtable personal access token.
AIRTABLE_API_URLNoOverride the API base URL.https://api.airtable.com/v0
AIRTABLE_BASE_IDYesID of the base to operate on.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_recordsA

List records from an Airtable table (a single page, up to 100 records), with optional view, page size, max records, and an Airtable filterByFormula expression.

get_recordA

Fetch a single Airtable record by its ID.

create_recordB

Create a new record in an Airtable table from a fields object.

update_recordA

Update fields on an existing Airtable record. Only the provided fields change.

search_recordsA

Find records whose given field contains a text value (case-insensitive substring match, single page of up to 100 records).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 5 tools

Disambiguation4/5

Each tool targets a distinct operation: get by ID, list with optional formula, create, update, and substring search. Search and list have some overlap, but their purposes are clearly differentiated by descriptions.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case (get_record, list_records, create_record, update_record, search_records), making the set predictable.

Tool Count5/5

Five tools is well-scoped for a focused Airtable CRUD-like server, covering core read and write operations without unnecessary bloat.

Completeness3/5

Missing delete_record is a notable gap in lifecycle coverage. Read (get/list/search), create, and update are present, but the inability to delete records limits full CRUD operations.

Maintenance

ActivityStale
ResponsivenessNo issues