airtable-mcp-server

delete_records

Delete one or more records from a table

Input Schema

NameRequiredDescriptionDefault
baseIdYes
recordIdsYes
tableIdYes

Input Schema (JSON Schema)

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