MentionFox
n8n guide

How to monitor brand mentions in n8n

You want a ping the moment someone talks about your brand — not another dashboard to babysit. Here is how to build that in n8n properly, where most DIY setups quietly break, and the fastest way to a working alert.

How this workflow is wired
Brand-mention monitoring workflowWorkflow node flow: Schedule (Trigger), then Search Mentions (MentionFox), then IF Filter (Logic), then Slack (Destination)ScheduleTRIGGERSearch MentionsMENTIONFOXIF FilterLOGICSlackDESTINATION

The problem with "just monitor mentions"

Monitoring brand mentions sounds like a one-node job. In practice, people who wire it themselves hit the same three walls within a week, and each one silently degrades the value of the whole thing until they stop trusting the alerts and go back to checking manually.

The first wall is coverage. A single platform's search — say, one social network's API — only sees that platform. Real conversations about your brand are scattered: a question on a forum, a complaint on a community site, a comparison thread, a news comment, a short post somewhere else. If your monitor only watches one or two places, you will believe things are quiet when they are not, which is the most dangerous failure mode of all.

The second wall is duplicates. The naive pattern is a schedule trigger that runs a search every few minutes and forwards whatever it finds. But each run re-finds the same recent posts, so your channel fills with repeats. Teams respond by muting the channel, which defeats the purpose. Deduplication is not a nice-to-have; it is the feature.

The third wall is noise versus signal. A raw keyword match catches your brand name used as a common word, off-topic chatter, and bot spam. Without a relevance filter and a sentiment read, the genuinely important mention — the angry customer, the buying-intent question, the journalist — gets buried under junk.

n8n is the right place to solve all three, because it is the orchestration layer that connects a listening source to wherever your team already works. What n8n does not ship with is the listening source itself. That is the piece you supply.

What a reliable mention monitor actually needs

Before wiring anything, it helps to name the parts of a monitor that works:

If your setup has all five, mention monitoring becomes genuinely low-maintenance. If it is missing even one, it slowly rots.

Building it in n8n

The shape of the workflow is simple once the listening source handles coverage and dedupe for you:

  1. A trigger that emits new mentions. This is the heart of the workflow. It polls on a cadence you set, scans many platforms for your topic, and — critically — emits only mentions it has not seen before. Because the dedupe lives in the trigger, your downstream nodes never see a repeat.
  2. An optional filter. If you want to gate on sentiment, follower count, or a keyword, drop an IF node after the trigger. Most teams start without it and add gates once they see the volume.
  3. A destination node. A Slack node posts each new mention with the snippet and a link. Swap or add Discord, Gmail, Google Sheets, or your CRM as needed — n8n makes the fan-out trivial.

The reason to let the trigger own coverage and dedupe is that those are the two things hardest to get right by hand. Reimplementing a cross-platform scan and a persistent "seen" set inside n8n is possible, but it is a maintenance burden you do not need. A purpose-built mention trigger does both and exposes simple settings: your topic, an optional source list, and how far back each poll looks.

Scoping sources to control noise and cost

The most common mistake after getting a monitor live is leaving it wide open. Scanning every platform on a fast cadence is expensive and noisy. Instead, pick the handful of sources where your buyers and critics actually talk. For a developer tool that might be a couple of technical communities plus one social network; for a consumer brand it might be review sites and short-post platforms. Narrowing the source list usually improves signal and lowers spend at the same time — a rare win-win. You can always widen later once you know what a typical day looks like.

Cadence matters too. Most brands do not need minute-by-minute polling. An hourly poll catches everything that matters and keeps costs predictable. Reserve fast cadences for a dedicated crisis watch, which is a separate, tightly-scoped workflow rather than your default monitor.

From alert to action

An alert is only the first step. The real leverage comes from what you wire after it. Because the mention arrives in n8n as structured data — author, platform, content, link, sentiment — you can branch:

That branching is exactly why monitoring belongs in n8n rather than a closed dashboard: the mention becomes the start of a workflow, not the end of one.

On credits: the MentionFox n8n node runs on FoxAPIs credits — priced at foxapis.com/pricing and separate from MentionFox subscription plans. Get your free API key at foxapis.com/trial.

Ready-made: Brand Mention → Slack Alert

Skip the wiring. This importable n8n workflow uses the MentionFox Trigger to scan 50+ platforms for your topic, dedupes every hit, and posts each new mention to Slack — set your topic, pick a channel, and activate. From there you can branch to enrichment, lead capture, or a crisis page. The mention scan uses your MentionFox connection token; the paid data nodes use a FoxAPIs API key from foxapis.com.

Get the template + setup See all 12 templates

Questions, answered

Can n8n monitor brand mentions across social platforms?

Yes — n8n is the orchestration layer. A trigger fires on each new mention and downstream nodes route it. You supply the listening source; the MentionFox Trigger covers 50+ platforms and emits each new, deduped mention into your workflow.

How do I avoid duplicate mention alerts in n8n?

Use a trigger that dedupes for you, or store seen IDs and filter against them. The MentionFox Trigger keys on each mention's source URL and emits only unseen ones, so an alert fires exactly once per mention.

What is the easiest way to get a Slack alert for every brand mention?

Import the Brand Mention to Slack Alert template, set your topic, choose a cadence, pick the channel, and activate. About two minutes end to end.

Does it cost credits to monitor mentions?

The scan costs a small number of credits per source per poll, so scoping sources and choosing a sensible cadence keeps spend low. See the pricing page for credit packs.