I also built an n8n workflow version of my competitor research tool
Hi — a little follow-up to my previous post about Competitor Scout, the competitive research tool I’ve been working on.
The original version is more of a developer/product app: a CLI plus optional Next.js web UI that lets you enter competitors, ask a research question, and get back structured competitor findings.
After that, I also made an n8n workflow version of the same idea.
The goal is similar, but the user experience is different: instead of using a custom app UI or CLI, you run everything inside n8n as an automation workflow.
Here's the demo video for it:
https://reddit.com/link/1t9xtj2/video/v4f1lmue5h0h1/player
What it does
You fill out a form with:
- Competitors, one per line
- A research question
For example:
>
The workflow then:
- Uses OpenAI to plan the research goals
- Sends those goals to Tinyfish Web Agent for browsing and evidence collection
- Polls the Tinyfish runs until they finish
- Uses OpenAI again to generate a Markdown comparison report
- Optionally logs results to Google Sheets
- Optionally uploads the final Markdown report to Google Drive
So instead of being a standalone product interface, this version is more like a “research automation template” that someone can plug into their existing workflow.
Why I made the n8n version
I wanted to see what this idea feels like as an automation rather than a full app.
The app version is better if you want a polished product experience.
The n8n version is better if you want something hackable, inspectable, and easy to connect with other tools like Google Sheets, Drive, Slack, Notion, email, or internal dashboards.
It also makes the workflow logic very visible: planning, browsing, polling, summarizing, and exporting are all separate nodes that can be changed.
Tech stack
- n8n for orchestration
- OpenAI for research planning and final report generation
- Tinyfish Web Agent for browsing and evidence collection
- Google Sheets for optional structured logging
- Google Drive for optional Markdown report export
What I’m looking for feedback on
I’d love to hear thoughts on:
- Whether this makes more sense as a standalone app or an n8n workflow
- What competitor research questions people would actually run regularly
- Whether Google Sheets / Drive exports are useful, or whether other destinations would be better
- How much control people would want over the research depth, sources, and report format
- Whether this kind of workflow would be useful as a reusable template
Curious to hear what people think, especially from anyone using n8n, AI agents, or automation workflows for product research.