I have a product that's well past the MVP stage - but no network and no vc expertise. what route should I take? (i will not promote)

Hi, I dont even know if this subreddit is the right place to ask. If not, it would be awesome if you could give me a hint into the right direction.

The Background:
I have built a software platform over the past 16+ months that is similar to n8n, Flowise, or Dify: You visually build (or auto-generate) AI-Workflows that you can chat with - or use in automations.

I describe it on the landing page as "An open-source, local-first platform for building MCP-powered AI workflows: model management, MCP servers, a visual flow builder, chat, and headless automation in one app. Your keys and data never leave your machine."

imo, it is an extremly strong and capable tool and solves a lot of the pain points one experiences when working with AI. It's well past a Demo or MVP not only do I use it in its own production (an automated software development lifecycle where it improves and supervises itself), but it is also deployed at a customer site where it manages virtual machine statuses of their intranet systems.

It's a free app, open source and MIT-licensed, currently sitting at roughly 600 stars on Github. We had some initial traction after "Cline", an agentic-coding extension for VSCode twittered about us in the early development, but at the moment daily user numbers seem to low.

There is an online-demo, to click around and try - but the app, as it currrently is, is supposed to be self-hosted; that means you download , install and use it on your own computer or server. I can share the demo link in the comments, if that makes any difference.

Now my problem:
I want to do the next steps. I may be biased but I think a lot of features in this app are on-par or even superior to competitors. I want to 1) extend the reach and 2) build a business around that: a subscription service that lets you either sync your workspaces between machines or allows you to work online (or from your mobile device), on a private cloud computer we provide.

What it needs is more capital, more marketing, more users. But I am a technical person - I don't have a network, I dont know anything about seeding rounds, I suck at doing marketing. I could of course start working on all these pillars right now: create promotional material or hire an agency, do more market research, do some ad campaigns, get more people to talk about it.

But all that takes a whole lot of effort and time (and skill) - and if I could choose, I would rather spend that time building great solutions, because that's what I am really good at.

So I guess my question is:
What route should I take? Should I invest the time myself and figure all this out? Should I find someone to invest in my idea myself - or do I rather search for a team that supports me with that (i.e. I find someone to find someone to invest)?

reddit.com
u/Ambitious-Prompt-975 — 14 hours ago

Flowise alternative

FLUJO is open-source and local-first: connect models, tools, and reusable subflows with drag and drop; debug every step in chat; trigger runs on schedules or events; and serve flows through OpenAI-compatible and MCP endpoints — while your keys and data stay under your control.

Runs on your computer - Supports
- Claude Pro/Max Subscriptions,
- Codex,
- Local Ollama Models,
- Paid API (Azure, OpenAI, x AI, Anthropic, Google Genai, Openrouter, Requesty)

Visual flows · MCP-native · Multi-model · Built-in debugger · Automation

→ Visit flujo.com.co · 
→ Watch the 2:28 product film · 
→ Install FLUJO ·
→ Explore features · 
→ Try FLUJO online (4 hour, private online sandbox to click around and try)

Chat Interface

https://preview.redd.it/s33mpxa7mljh1.png?width=1811&format=png&auto=webp&s=e80dddee72f489ab51febdf1b6c2aee6b70fbab1

Visual Flow Builder

https://preview.redd.it/bih2nm9omljh1.png?width=1810&format=png&auto=webp&s=fcf8a7eff398c44fb94a6a81b6ad13708adf0694

Automation

https://preview.redd.it/uzq9w4yjnljh1.png?width=1809&format=png&auto=webp&s=8302e5a7208179d6b46c207f9dfa221f2aa06a51

Supports Interactive "MCP-Apps"

https://preview.redd.it/q1j3ng3cmljh1.png?width=1805&format=png&auto=webp&s=cf90b65bc3bcd170c5613aed8315d92addc9c9d7

https://github.com/mario-andreschak/FLUJO

u/Ambitious-Prompt-975 — 4 days ago
▲ 1 r/mcp

Sandbox Computer - VM for AI - starts in seconds.

tl;dr:
This MCP Server gives your AI a personal, slim, sandbox computer.

Defaults (can be configured):

  • VM: Docker* with Debian-Slim
  • Deletes when MCP Session ends
  • Network access ON

Supports Local and Cloud. More below.
*(needs Docker installed & running!!!)

uvx mcp-sandbox-computer-vm-for-ai

----

Hello,

I recently found this MCP server called Kilntainers , which allows you to create vm-sandboxes for AI models to run terminal commands. This is a Fork. I added a persistent/temporary-flag through a parameter and FlyMachines.io support.

This MCP-Server has 1 tools that is important tool for your AI:

Tool Purpose
sandbox_exec Executes a terminal command in the Sandbox VM

There is a also few lifecycle tools, but these shouldn't always be exposed to your LLM; only if necessary.

Tool Purpose
computer_dashboard Open the MCP App and return the current inventory
computer_list List state, backend, image, provider ID, and lifecycle mode
computer_create Create/attach by ID; omission always generates a new slug
computer_restart Restart while preserving writable state
computer_factory_reset Erase writable state and recreate from the base image
computer_delete Permanently remove the computer

https://github.com/flujo-app/mcp-sandbox-computer-vm-for-ai

  • 🖥️ MCP-App based dashboard: List computers, run commands, restart, factory reset, and delete from FLUJO or another stable MCP Apps host.
  • 🏷️ Named computers: Reconnect with a stable computer_id, or omit it to receive a readable random slug.
  • 💾 Explicit lifecycle: Temporary computers are removed when the MCP session ends; permanent computers survive and can be reattached later.
  • 🧰 Multiple backends: Docker/Podman, native Fly Machines, Modal, E2B, and WebAssembly.
  • 🏝️ Isolated per agent: Every agent gets its own dedicated sandbox (computer_id parameter ).
  • 🔒 Secure by design: The agent communicates with the sandbox over MCP - it doesn’t run inside it. No agent API keys, code, or prompts are exposed to the sandbox (except through .env vars you configure).
  • 🔌 Tool and UI access: sandbox_exec simple for you model, while provider-neutral lifecycle tools power both models and the dashboard.
  • 📈 Scalable: Scale from a few agents on your laptop to thousands running in parallel in the cloud.

- MCP-Server Command (For installation through UI's - e.g. Cursor, FLUJO)

uvx mcp-sandbox-computer-vm-for-ai

- Installation with json file (Claude Desktop, Cursor, Cline, etc.):

{
  "mcpServers": {
    "sandbox-computer": {
      "command": "uvx",
      "args": ["mcp-sandbox-computer-vm-for-ai"]
    }
  }
}

- Installation in Claude Code

claude mcp add --scope user sandbox-computer -- uvx mcp-sandbox-computer-vm-for-ai

- Installation with FLUJO

install from marketplace: mcp-sandbox-computer-vm-for-ai

install from github: https://github.com/flujo-app/mcp-sandbox-computer-vm-for-ai

I think its super useful with persistency and network by default and fly machines was needed,
thanks to the original creator, check Kilntainers on his Github as well.

Have fun!

PS: This is the mcp-apps-based management dashboard:

https://preview.redd.it/y4wt1wcod0jh1.png?width=1500&format=png&auto=webp&s=6631d97a4c7bb7827eeba0ffc482babfa8c12ba3

reddit.com
u/Ambitious-Prompt-975 — 7 days ago

powershell updater in my sideproject

the water and panning speed are defined by data transfer rates.
the color-palette matches the user's local time.

u/Ambitious-Prompt-975 — 11 days ago

What is an "Agent" for you - now, end of 2026?

I'm asking because it can mean a million things. And I am not sure my understanding is the same as everyone elses. I wanna get out of my bubble and see what people are actuall doing with AI.

So tell me about how you do AI:
Are you using an online service, or coding something yourself, are you just using Agents?

If you are building or deploying: Are you running your Agent(s) locally? Or hosted?
How is it "invoked"?

When you're coding yourself:
Are you using SDK's or Frameworks? A2A, MCP, OpenAI, LangChain? - And how much more complex was is than what you expected? Are you "done"?

If you are not building or coding yourself: What tools are you using?
Is running a session in claude code on ultramax effort already considered using Agents?

Do you care about security?
Or persistent memory?
Is your memory the conversation - or a special tool - or handled by the harness?

Are you using the Agents by yourself, or do others use them too?
Does your agent talk to other Agents?

How do you represent Agents visually? How do you interact with them? Chat, voice, video avatars? - or completly different.

Are you building Agents for fun, or for business? What Models are you using? What are you doing with your Agents? Do you do Text? or Image/Video/Audio?

Have you noticed a change in how you worked with AI from a year ago?

You go first, lets talk not make this an ad space!

reddit.com
u/Ambitious-Prompt-975 — 14 days ago
▲ 2 r/mcp

Everyone is asking how to get MCP server into VScode - but nobody is asking how to get VSCode into MCP server

This MCP Server brings VSCode as MCP-App.

https://github.com/flujo-app/mcp-vscode-mcpapp

It does not remote control VSCode - but comes bundled with OpenVSCode inside the MCP - so its completly standalone. Install the Server, configure the workspace directory as .env variable and you're done.

{
  "mcpServers": {
    "vscode": {
      "command": "npx",
      "args": ["-y", "@mario.andreschak/mcp-vscode@0.1.7", "--stdio"],
      "env": {
        "MCP_VSCODE_WORKSPACE": "C:\\path\\to\\repository"
      }
    }
  }
}

If your MCP Client supports MCP-Apps, it can show the VSCode UI Inline.
If not, just access VSCode in your Browser - you get an URL like http://127.0.0.1:63613/ide/...../

Feedback? I read you.

u/Ambitious-Prompt-975 — 15 days ago
▲ 0 r/AIDevelopmentSolution+1 crossposts

Auto-generate agent with 1 prompt -> (example: generate video, upload to youtube and post to reddit)

I think that's pretty cool - 1 prompt and then it generated the whole workflow and with just 1 chat message I had the video generated, uploaded and posted.

and it works for other stuff too, not only video generation.

Github

u/Ambitious-Prompt-975 — 16 days ago
▲ 0 r/mcp

Nobody wanted to try my app - so I am giving away 50dollars in API credits.

People are stuck with their habits and with the tools they use.
It's hard to get someone to install your App and give feedback.

What this is?
Its a free local windows app where you can create AI Workflows:

  1. You can combine AI from different providers, different models.
  2. And you can connect them in workflows with MCP Servers. All in a visual way.
  3. then you chat with them - or automate them with triggers.

I post it here in /mcp because the whole app is centered around the MCP protocol, I thought it would be the best place to start.

Here is a 2 min video describing it
https://mario-andreschak.github.io/FLUJO/githubpages/short/

What can you do with it?

So you can let gemini scan your codebase in the morning, create github issues,
openai Sol picks the github issues up, and plans fixes, ollama models move the files back and forth, claude goes along and implements - daily at 6pm they push the work, etc. etc.

or you build a couple of workflows where they generate images and videos with kling and transcribe it with elevenlabs - post that to youtube and create a linkedin post about it..

the possibilities are almost endless.

What does it cost?
Nothing. It open source and runs on your computer. It uses your Claude Code, your ChatGPT Subscription, or your API Keys. You pay only what you want to pay.

What about those 50$ ?
Its hard to get feedback.
I want to enable people to test FLUJO.

So I built a sandbox around it and deployed it on the web.
There is one API Key for all. First comes first serves.

So here's the deal:
-> on try.flujo.com.co -> everyone of you gets their own small computer in the cloud, and FLUJO gets installed onto it -> each FLUJO works for 4 hours then it gets cleaned up, you can do whatever you want.

And I added 50$ to the API key that you all route through...

So you can use it for whatever you want: Generate Images, Videos, Do your Homework, ask stupid questions to AI. Clone your github repo and use my api credits to fix your repo's.

If you are smart you will figure out how to use expensive models. Default is *not* Fable :)

I would just like to get some feedback on the app:
- Things you tried that didnt work
- or whenever you had a big ?-mark somewhere and couldnt figure it out in flujo.
- or when you thought this is shit, this could be better

Thanks!

u/Ambitious-Prompt-975 — 19 days ago
▲ 63 r/mcp

What is the most underrated FREE mcp server you know of?

I am looking for secret stars - MCP servers that nobody knows about that bring huge value (or are just funny/good) without complicated setup.

Creative MCP Servers, Social Media, Voice, Video, Image, Music, Office, Research, Automation, Meme - whatever comes to your mind.

I feel like the whole ecosystem evolves around paid API services and 402 transactions. Very little is local-first, and most of the rest is lazily wrapped.

reddit.com
u/Ambitious-Prompt-975 — 21 days ago
▲ 1 r/mcp

This is my mcp client I've been working on for over a year now. Comment and let me try your coolest MCP server with it

u/Ambitious-Prompt-975 — 21 days ago

Por qué café instantáneo?

Esto es algo que no he entendido desde el primer día. Un país que produce algunos de los mejores cafés del mundo. Caficultores y tostadores en todo el país, y sin embargo, la probabilidad de obtener esta basura de Nescafé en lugar de un buen tinto es siempre del 50:50. Por qué ?

reddit.com
u/Ambitious-Prompt-975 — 29 days ago

AI Agents visualized

I built this to be able to visually see how my Agents & their tools connect.

- Orange orbs are Agents/Workflows.
- Orange lines are connections between Agents (i.e. Subagents)
- Blue orbs are MCP Servers (i.e. tools)
- Blue lines are connections from an agent to a tool.

I think its pretty fun to look at.
It looks way smoother in real life than in the video. My PC just sucks for recording 😅

u/Ambitious-Prompt-975 — 30 days ago

a brain that is evolving by itself

In this app, you create multiple brains, for each you select how you run it (locally/online provider).

You give your brain a Life goal.

Your new brain is created in a docker instance.

It can search and install MCP-Servers (=learn skills), auto-generate Workflows (=learn behaviors), and tries to fullfill its life goal.

Everything each brain generates, and the tools it installs, can be managed through a separate backend as well flujo.com.co for anyone who is curious.

Still WIP - but you can check it on github if you want.
https://github.com/flujo-app/brain

u/Ambitious-Prompt-975 — 1 month ago
▲ 30 r/GermanRap+1 crossposts

Diesen Track hatte ich für einen Freund aufgenommen, der nicht mehr bei uns ist. Heute auf einer alten Festplatte gefunden. RIP mein Bro

u/Ambitious-Prompt-975 — 21 days ago
▲ 1 r/ollama

n8n with local ollama?

has anyone experience with this?
I was thinking about setting up some Workflows with local models, and I dont know how complicated that is to set up. This docker thing seems complicated

I was trying to figure out the best way to approach this.
Also I found this app called flujo and I am not sure if I should try that or rather n8n??

https://preview.redd.it/i83kdstj91ch1.png?width=720&format=png&auto=webp&s=55e790a95fcaf9bc82e1d03ec15ce648003c6f4d

Which way to go here? n8n seems very powerful but also kind of over my head.. and this flujo thing has only 600 stars on guthub I dont know if i can trust it

reddit.com
u/Ambitious-Prompt-975 — 1 month ago

I kindly ask you to help me with a threat modeling review for my "self-improving" app

Hello everyone,

Since a year or so I’m building an open-source app for AI workflows and currently implementing a "self-improvement" loop: the app is supposed to improve its own code, using itself. I would highly appreciate your architectural critique and threat modeling ideas, as I am relatively new to actually securing LLM-based applications.

The Architecture:

  1. The app polls my public GitHub Issues every 15 minutes. On a new issue, it triggers the first workflow.
  2. A local, smaller model reads the issue to detect prompt injection or malicious intent.
  3. If the local AI approves, the issue is passed to Claude. Claude evaluates the issue against the source code to create a plan. (As seen in the screenshot below, this step currently has access to PowerShell and filesystem tools).
  4. This workflow ends and I have to manually approve of the plan and move it into a different folder.
  5. Another trigger (a filewatcher) executes the next workflow: A separate coding agent that executes the approved plan, tests it, and commits it locally for my final review (and push).

My Core Concerns:

  • Prompt Injection: Since the untrusted input (GitHub issues) is entirely public, I am relying heavily on a local AI to sanitize/block malicious prompts. How reliable is this in practice?
  • Tool Abuse: Even though there is a manual review gate, the Planning Agent has MCP tool connections (PowerShell, Filesystem) to help it evaluate the codebase. I am worried a well-crafted issue could bypass the local AI and trick Claude into executing code immediately during the "planning" phase.

Repository: https://github.com/mario-andreschak/FLUJO

I am not asking for a free pentest or for anyone to attack the repo. I just want to know: What glaring holes am I missing in this setup? How would you approach hardening this workflow against malicious GitHub issues? What would be possible (other) attack angles?

Thanks for your time and expertise!

https://preview.redd.it/15vgrr3shkbh1.png?width=861&format=png&auto=webp&s=a577f32b76b701bff89d7c7f527698bda49b3740

reddit.com
u/Ambitious-Prompt-975 — 1 month ago