Launching today

Nodey
Your n8n command center, now on your phone
83 followers
Your n8n command center, now on your phone
83 followers
Nodey is a mobile companion for n8n. Monitor your workflows in real time, diagnose failed executions with AI, build workflows from a prompt, and trigger automations with NFC tags or geofenced locations — all from your phone.








Free Options
Launch Team / Built With



Nodey
@thefamoushesham congrats on the launch Hesham. Quick diagnose and resolve sounds like a winner.
Nodey
@zolani_matebese Thank you — really appreciate it!
The on-call angle is the real pitch here. I run WhatsApp bots for small businesses and failures never happen when I'm at the desk - it's always a webhook dying on a Saturday. Checking the failed execution from the phone instead of opening the laptop is exactly the gap. Question: when the AI diagnoses a failed execution, does it point to the specific node and param, or is it more a plain-language summary?
Nodey
@david_marko Yes, I think part of the reason why I developed this app is because of the back pain I was getting sitting so long in front of my computer. To answer your question... in the tests I've done, yes, it will point to the failure node but the response is usually provided in the format of long form text, which I now realise might not be the most convenient when people really want a quick look at their phones.
I've made a note of that for the next update... should be an easy JSON schema fix.
Thank you so much!
Mailwarm
Does it show the exact run logs and suggest a fix, or does it just summarize what went wrong?
Nodey
@thamibenjelloun It actually does. It will absolutely suggest a fix and will provide JSON that you can export with the tap of a button to your n8n instance. It will also pinpoint the failure node but the response is usually provided in the format of long form text, which I now realise might not be the most convenient when people really want a quick look at their phones. I've made a note of that for the next update... should be an easy JSON schema fix.
Thank you so much!
Mobile access to n8n workflows is a gap that's been surprisingly underserved. n8n's web UI is powerful but it's not really built for mobile triage. The interesting challenge is maintaining a coherent state view when workflows can be mid-execution. How do you handle real-time execution monitoring on mobile? WebSockets to the n8n instance directly, or does Nodey proxy the state updates?
Nodey
@anand_thakkar1 Neither, actually — Nodey talks straight to your instance with no middleman, but over REST polling rather than WebSockets. As far as everything that we've tried indicates, n8n's push channel (/rest/push) is internal-only — cookie-authenticated for the editor UI and unstable across versions — so the public API (/api/v1) effectively mandates polling for third-party clients. While an execution is live, Nodey polls it on a tight interval (5s default, remotely tunable so I can throttle fleet-wide if needed), then drops to iOS background refresh plus refetch-on-foreground otherwise — the instance stays the single source of truth, so the app never trusts a stale local view. And deliberately no proxy: your API key and execution payloads never touch any server of mine.
Interesting idea. Can you actually trigger n8n workflows from the app, or it's just monitoring for now?
Nodey
@dhiraj_patel5 ABSOLUTELY! This was one of the features I wouldn't compromise on. I tested a few other apps that did the same thing on iOS and Android and I was always so confused when they didn't have this basic feature. With Nodey, you can trigger any workflow you want within the app, we have widgets that allow you to trigger workflows from your homescreen, you can trigger workflows when you arrive or leave a location, and through NFC tags by waving an NFC tag across your phone!
@thefamoushesham Supercool!
Nodey
@dhiraj_patel5 Thank you!