$5 · Support the community

AI-Summarize Every MySQL Row and Send to Airtable

An AI step reads each new MySQL row, writes a short summary, and n8n has Airtable create a new record in Airtable — so your team gets the gist without reading the whole thing.

difficulty Beginnersetup 25 minresult A hands-off n8n workflow where every relevant MySQL row automatically reaches Airtable — create a new record in Airtable.
  1. 1

    Fetch MySQL data

    Add an HTTP Request node (or the native MySQL node if you have credentials set up) and point it at the MySQL API. Poll MySQL for new rows. Add a Schedule Trigger before it if this recipe runs on a timer, or a Webhook node if MySQL can push events directly.

  2. 2

    Shape the data with a Set node

    Add a Set node after the fetch step to pull out the fields you need — e.g. id, title (or name), status, and updated_at from the MySQL row. This keeps the rest of the workflow clean and readable.

  3. 3

    Send it to Airtable

    Add an Airtable node set to operation Create. Connect your token, pick the Base and Table, and map fields from the Set node.

  4. 4

    Activate and test

    Click Activate in the top-right corner. Trigger a real row in MySQL (or run the workflow manually against existing data) and confirm it lands correctly in Airtable. Once verified, this runs hands-off.

Frequently asked questions

Do I need to code anything?

No. n8n is a visual, drag-and-drop builder. You connect your MySQL and Airtable accounts, map the fields, and activate — no code required.

Where do I get my MySQL API credentials?

In your MySQL account settings, look for "API", "Developers" or "Integrations" and generate an API key or token. Paste it into n8n's HTTP Request node (as a header or credential) or the native MySQL node if one is available.

Can I filter which items trigger this workflow?

Yes. Add an `IF` node after the Set node with a condition on any field (status, amount, tag, etc.). Wire the TRUE branch to the Airtable step and leave FALSE empty to skip the rest.

About this recipe. Recipes on FlowRecipesHub are written for business owners, not developers, and are tested before publishing — how recipes get made. Some ingredient links are affiliate links that cost you nothing — full disclosure.