Nodey - Your n8n command center, now on your phone

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.

Add a comment

Replies

Best
Hey Product Hunt — I’m Hesham, the maker of Nodey 👋 I built Nodey because I kept running into a simple problem: n8n is incredibly powerful, but when something breaks, checking on it from your phone is still awkward. If you’re away from your laptop, on-call, traveling, or just trying to keep an eye on automations during the day, there isn’t a great native mobile command center for n8n. Nodey is my attempt to fix that. It lets you monitor n8n executions, inspect recent errors, use AI to understand and debug workflows, back up workflows into an encrypted on-device vault, and trigger automations using mobile-native actions like NFC tags, geofences, widgets, and push notifications. The homepage includes an interactive app mockup, not just screenshots — you can actually click around and get a feel for how the app works before installing it. A few things I’d especially love feedback on: 1. Does the positioning make sense if you already use n8n? 2. Which feature feels most useful: monitoring, AI debugging, vault/backups, NFC/geofencing, or widgets? 3. What would make this a must-have for your n8n setup? We’re preparing for an early June launch on iOS and Android, and we’ll be opening a limited number of founding member slots at launch. Would genuinely love your feedback, questions, and feature requests.

 congrats on the launch Hesham. Quick diagnose and resolve sounds like a winner.

 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?

 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!

Does it show the exact run logs and suggest a fix, or does it just summarize what went wrong?

 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!

Interesting idea. Can you actually trigger n8n workflows from the app, or it's just monitoring for now?

 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!

 Supercool!

 Thank you!

What’s the main use case? If this is a tool for developers, they usually build things on a computer, not on a phone. Why is there such a strong focus on mobile?

 I think mainly it's because building and operating tend to come with different issues. You'll still have to build workflows at a desk, but workflows run 24/7 and it's unrealistic to expect to developers to remain at their desk on standby. Nodey allows you to handle the triage by sending a failure notification, telling you what node failed, allowing you to retry the workflow, deactivate so you don't keep burning through tokens and credits... or rebuild and optimise it using our AI tools. There is also a use case in that sometimes you want your workflows to be linked to the real physical world... for example, I've been using the location trigger feature to trigger workflows when I leave my home for the office. It's useful when you have workflows that are tied to physical locations.

And, in the case of manual trigger workflows that don't run on a schedule, you can still fire them from your phone without getting yourself on a desk.

There is also the Workflow Vault (which allows you to store your workflows and restore them to any n8n instance (useful if managing clients' instances)) and the AI Workflow Builder that builds the JSON for you and exports it directly to your n8n instance.

Checking the failed execution from the phone instead of opening the laptop is exactly the gap, a brilliantly executed idea.

 Thank you — really appreciate it and let me know if there are any features you'd like added.

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?

 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.

Running n8n means workflows break at the worst times, away from a laptop. A command center on my phone to catch a failed execution and re-run it is the obvious missing piece. Can Nodey edit a node mid-flow, or is it monitoring + triggering for now?

  The catch-and-re-run loop is exactly what's built: background polling flags the failed run, you get a notification, open the execution to see which node errored with its output, and retry (or stop/delete) it right there — plus toggle workflows and fire webhook triggers manually, via NFC tag, or by geofence. Node-level editing isn't in yet, and that's somewhat deliberate: the public n8n API has no granular node PATCH (you'd replace the whole workflow JSON), and an in-flight execution runs the version it loaded at start anyway — so "mid-flow edits" can't rescue a running execution even in theory. Where Nodey goes past pure monitoring is creation: the AI builder drafts complete workflows from a prompt and pushes them to your instance, and a debug companion reasons through why a node failed. Editing the canvas is the one thing n8n's web UI proves doesn't shrink to a phone — if I add it, it'll be parameter tweaks on a single node, not graph surgery.

n8n users are usually pretty technical and already have dashboards, alerts, and monitoring in place. What made early users install Nodey instead of just relying on the tools they already had?

There must have been a specific pain point that kept coming up?

 Honestly, the first early user was me — I run n8n myself after all. It's a useful tool if you don't want to be stuck at your computer all day monitoring workflows and it combines enough elements (I think) to actually allow you to manage your workflows without having to reach out to your computer all the time. The other key feature is the location trigger, which I've been personally used to trigger workflows when I arrive or leave a place.

I also don't think there is an app that currently lets you build workflows with AI and export them directly to your n8n instance as well as store your workflows so you can restore them to another n8n instance and produces reliable homescreen widgets that lets you see if any execution errors popped up recently.

Good to see Nodey: Your n8n command center, now on your phone ship. Which use case are you seeing the most demand for?

 I think the Live Monitoring and the ability to switch workflows on and off + find out what node caused an error are the most popular features, but I'm anticipating that people will eventually fall in love with the AI Workflow Builder for the simple reason that it produces great JSON that is immediately exportable to n8n with the touch of a button.

12
Next
Last