Finding the modules
- Notion Plus is a Pro feature — it requires a Pro license. If a module is missing in Make, also make sure the Notion Plus app is added and its connection is set up.
- Set up and manage all connections at make.magicmealkits.com/connections.
Timeouts and retries
When a Notion write fails, the Magic Meal Kits server retries internally before giving up. If those retries run long, the Make module can hit its time limit and surface a timeout.Set an explicit timeout on long-running requests (a few seconds is typical), and keep each
call within limits — for bulk operations, stay at ≤100 records per call.
Avoid duplicate runs
Make’s “allow storing of incomplete executions” option re-runs failed scenarios. Combined with the server-side retry above, this can look like duplicate writes. If you see repeats, review that setting on the scenario and decide whether re-running on failure is what you want.Stay within Notion rate limits
The Notion Plus modules are rate limited to about 3 requests/second (matching Notion’s own API). Don’t fan out parallel branches that blow past this — throttle or batch instead. See the Notion API overview for bulk limits and the optionalconfig
block.

