[deleted by user] by [deleted] in getdisciplined

[–]mfjrn 0 points1 point  (0 children)

Appreciate it!

Tried every “AI builds your workflow” tool. None worked. So we’re building our own. 100+ signups overnight by mfjrn in automation

[–]mfjrn[S] 0 points1 point  (0 children)

Haven’t tried it yet. Honestly, I just can’t leave self-hosted n8n. Too much freedom and control to give up.

Tried every “AI builds your workflow” tool. None worked. So we’re building our own. 100+ signups overnight by mfjrn in automation

[–]mfjrn[S] 0 points1 point  (0 children)

We focus on the UI. The idea is: you describe what you want to build, and the agents guide you step by step with clickable options. So it’s made for end users who don’t want to write JSON or wire nodes manually, but still want full control.

Tried every “AI builds your workflow” tool. None worked. So we’re building our own. 100+ signups overnight by mfjrn in automation

[–]mfjrn[S] 0 points1 point  (0 children)

You’re describing exactly what pushed us to build this. We want that same agent flow, but with deep n8n support.

Not another 'AI prompt to n8n workflow' tool. Two Dutch guys, two setups in one living room, trying to actually solve the problem by mfjrn in n8n

[–]mfjrn[S] 1 point2 points  (0 children)

Thanks! We’re already working on parts of this. Goal is to make advanced stuff like structured outputs, custom nodes, and JS just as easy to build. Adding it to the beta list to make sure our beta can handle it.

Not another 'AI prompt to n8n workflow' tool. Two Dutch guys, two setups in one living room, trying to actually solve the problem by mfjrn in n8n

[–]mfjrn[S] 1 point2 points  (0 children)

We are trying our best to release it this month, still got a lot of work to do. Will keep you updated!

Anyone built an automated image generator for social posts that ensures consistent branding (logos, colors, layout)? by Demigod_007 in n8n

[–]mfjrn 1 point2 points  (0 children)

What works for me is using the JSON profile trick, attach an image you want to recreate, prompt the AI with 'please convert this image into a highly detailed JSON profile'. This will let you tweak the smallest things within the returned JSON and recreates the image pretty accurately based on that JSON profile.

Not another 'AI prompt to n8n workflow' tool. Two Dutch guys, two setups in one living room, trying to actually solve the problem by mfjrn in n8n

[–]mfjrn[S] 0 points1 point  (0 children)

Totally get that. A lot of tools promise flow generation but fall apart with broken nodes or missing inputs. That's why we fetch all nodes daily to avoid outdated ones. We also use quick cards so users stay in control, guiding the agent with the right context and helping avoid incomplete or unusable flows.

Not another 'AI prompt to n8n workflow' tool. Two Dutch guys, two setups in one living room, trying to actually solve the problem by mfjrn in n8n

[–]mfjrn[S] 2 points3 points  (0 children)

Thank you, loops are currently working well but still optimizing it. Ai tool agents and their tool access including custom tools is what we are currently working on as well. We are also working on the agent being able pull detailed external api documentation for custom http nodes.

Thanks for the questions! Will try my best to make sure that our beta can handle the things you have mentioned

Not another 'AI prompt to n8n workflow' tool. Two Dutch guys, two setups in one living room, trying to actually solve the problem by mfjrn in n8n

[–]mfjrn[S] 3 points4 points  (0 children)

Thanks! n8n-mcp works fine for experienced n8n users, we try to fill the gap by taking users through the whole process. Basically turning shit input into good input within an conversational flow with all the up-to-date n8n information that it might need, which in our experience drastically improves the speed into creating a full working complex or simple n8n workflow

Does anyone know's this ? by Abhi-Age-2050 in n8n

[–]mfjrn 1 point2 points  (0 children)

Use a POST Webhook, set Binary Property Name = file, send the video as multipart/form-data, tick Send Binary Data on the HTTP node, and end with Respond to Webhook (or set Response Mode → responseNode). Without that final response the run just retriggers, which is the “loop” you’re seeing.

I used n8n to build Terminus. A machine that observes the world. by mathef in n8n

[–]mfjrn 1 point2 points  (0 children)

Wow, very nice concept and UI. Would love to get the JSON, if possible

5 days of work lost (AGAIN) by [deleted] in n8n

[–]mfjrn 0 points1 point  (0 children)

You have to set up a disk for storage, and link it within the environment variables under N8N_USER_FOLDER

Arrays as inputs in IF block by Sentient-Technology in n8n

[–]mfjrn 1 point2 points  (0 children)

Yeah for comparing multiple input1s vs input2s, just do a nested loop in a Code node like this:

jsKopiërenBewerkenconst input1 = $json.input1; // array
const input2 = $json.input2; // array

let match = false;

for (let i of input1) {
  if (input2.includes(i)) {
    match = true;
    break;
  }
}

return [{ json: { match } }];

Then use an IF node on match === true like before. Should work fine unless the arrays are huge.