airtable-mcp-server

get_record

Get a specific record by ID

Input Schema

NameRequiredDescriptionDefault
baseIdYes
recordIdYes
tableIdYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "baseId": { "type": "string" }, "recordId": { "type": "string" }, "tableId": { "type": "string" } }, "required": [ "baseId", "tableId", "recordId" ], "type": "object" }