Zapier to Make converter

Hello n8n,

We’ve built a Zapier to n8n converter after migrating dozens of clients in the past few months: https://migromat.com/

It’s simple: just drop your Zapier workflows export (no credentials or personal data - just workflow structure), and we’ll convert it into an n8n workflow JSON you can paste into your account and connect your credentials.

Under the hood, it works like this:

  1. We extracted apps and actions from Zapier and n8n, and mapped those.
  2. Your Zapier JSON and our set of mapped n8n nodes/actions are processed by a multi-agent system:
  • n8n expert: has consumed a lot of n8n documentation
  • Zapier expert: has consumed a lot of Zapier documentation
  • HTTP request creator: adds web request nodes if an app isn’t available in n8n (has web search access)
  • Validator: checks mapping accuracy and output quality
  • Conversion architect: reasoning agent that orchestrates the conversion and leverages other agents
  1. The system processes each node step by step, validating and saving as it goes.

It’s definitely a bit overkill for the task :), but we were mostly exploring agentic architecture with this project.

The first few conversions are free; the rest are behind a paywall to avoid unexpected costs for us.

If you have complex or interesting Zaps to convert, reach out - happy to put our agents to the test with the community!

How do you map real-time triggers (Webhook vs. Polling) from Zapier into n8n? Will they become native HTTP/Webhook nodes with the same payload and event schema?
If a Zap uses “Paths,
Filter by Zapier or the Formatter (e.g. date formatting, text transforms), will those automatically convert into n8n’s IF/Branch, Function or Code nodes?

For real-time triggers, we are always attempting to find native ones through one-to-one mapping. If trigger doesn’t exist in n8n - we are defaulting to setting up webhook node for webhooks, or Schedule Trigger node + httpRequest node for polling

Formatter & Filter is converted heuristically by agents depending on what makes most sense in each workflows - most of the time those are converted to Function/Code nodes

1 Like