airtable-mcp-server

list_records

List records from a table

Input Schema

NameRequiredDescriptionDefault
baseIdYes
maxRecordsNo
tableIdYes

Input Schema (JSON Schema)

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