All tools

Update records

Changes only the fields you pass on existing records, leaving the rest as they were, and returns the updated records.

View on GitHub
Updated Sep 27, 2026Available asMCPCLIAPI

Description

A `PUT` to the same path clears every field you leave out, so use `PATCH`. On the API, set `performUpsert` with `fieldsToMergeOn`, such as an email field, to update the record that matches or create one when none does; the request fails when several records match. The MCP tool and the CLI update records by id and take field ids.

update-records.md

Update records

Changes only the fields you pass on existing records, leaving the rest as they were, and returns the updated records.

A PUT to the same path clears every field you leave out, so use PATCH. On the API, set performUpsert with fieldsToMergeOn, such as an email field, to update the record that matches or create one when none does; the request fails when several records match. The MCP tool and the CLI update records by id and take field ids.

Set up

Use the first option your agent supports.

MCP (official, remote)

Add this server to your agent's MCP settings, then sign in when asked.

{ "mcpServers": { "airtable": { "url": "https://mcp.airtable.com/mcp" } } }

Call the MCP tool update_records_for_table.

Server URL: https://mcp.airtable.com/mcp

CLI (official)

Install the command, then confirm it runs.

npm install -g @airtable/mcp-cli
airtable-mcp --version

Run airtable-mcp update-records-for-table.

Set $AIRTABLE_TOKEN in your environment first (get a key: https://airtable.com/create/tokens).

API (official)

Before doing anything else, make one read-only call to confirm access.

Rules

  • Ask the user before anything that sends messages, costs money, or changes data.
  • Never print API keys.

Built from these files in the repository

The layout and the rules come from lib/catalog/render-markdown.ts, the set-up wording from lib/catalog/render-access.ts.

Ways in

RouteSourceCallRequiredDocs
MCPOfficial · remoteupdate_records_for_tableOAuthDocs
CLIOfficialairtable-mcp update-records-for-tableAPI key in $AIRTABLE_TOKENDocs
APIOfficialPATCH /v0/{baseId}/{tableIdOrName}API key in $AIRTABLE_TOKENDocs

Workflows using Update records

No workflows yet
No published workflow uses Update records yet.