Short answer: If you’re only talking to Airtable, skip MCP. Use a webhook. Pickaxe “Make webhook” >> Make.com “Custom Webhook” >> Airtable “Search Records”.
Short answer: you don’t need three “Make an API Call” modules. Use Make’s native Airtable modules instead:
Search >> Airtable → Search Records
Insert >> Airtable → Create a Record (or Upsert a Record if it might already exist)
Deletion >> Airtable → Delete a Record
Tip for “latest row”: in Search Records, set Sort to your timestamp field descending and set Limit to 1.
Airtable’s API is one operation per request. There isn’t a single endpoint that can search + insert + delete in one shot.
You can still keep one automation flow and run exactly one Airtable action per run (search or create/update or delete).
Use Make’s native Airtable modules (simpler than “Make an API Call”):
Search >> Airtable >> Search Records
Create or Update >> Airtable >> Upsert a Record(one module handles create-or-update)
Delete >> Airtable >> Delete a Record(one call if you already know the recordId; if you don’t, do Search >> Delete)
For “latest row,” set Sort to your timestamp field descending and Limit to 1 in Search Records.
Need to affect many records at once? Use the Bulk Create / Bulk Update / Bulk Upsert / Bulk Delete modules. There is still one call per operation type, but they handle multiple records efficiently