🔓 Unlock all 10,000+ workflows & prompts free Join Newsletter →
✅ Full access unlocked — explore all 10,000 AI workflow and prompt templates Browse Templates →
Home n8n Workflow
January 22, 2026

Mailchimp to HubSpot, scored leads ready for sales

Lisa Granqvist Partner Workflow Automation Expert

Your Mailchimp list grows, but your CRM doesn’t. New subscribers sit there as “just an email,” nobody knows who’s worth a sales follow-up, and the best leads go cold while you’re still copying fields into HubSpot.

This Mailchimp HubSpot automation hits marketing managers first, because you’re the one judged on lead quality. But sales leads chasing pipeline and agency owners running client handoffs feel the mess too. The outcome is simple: every signup turns into an enriched, scored contact that’s ready for sales action.

Below, you’ll see exactly how the workflow turns raw subscribers into CRM-ready records, how it routes the top leads, and what to tweak so it matches your scoring rules.

How This Automation Works

The full n8n workflow, from trigger to final output:

n8n Workflow Template: Mailchimp to HubSpot, scored leads ready for sales

The Problem: Mailchimp signups don’t translate into sales-ready leads

Mailchimp is great at collecting subscribers. The pain starts right after that. A new signup lands with almost no context, so someone has to guess: Are they a student, a buyer, a competitor, or a perfect-fit prospect? Then comes the cleanup. Names are missing, fields are inconsistent, and the CRM gets cluttered with half-records that nobody trusts. Meanwhile, sales asks for “better leads,” marketing asks for “faster follow-up,” and the reality is you’re doing manual triage on a growing list.

The friction compounds. Here’s where it usually breaks down.

  • A subscriber can sit un-touched for days because nobody knows they’re high intent.
  • Manual enrichment (LinkedIn lookups, role guesses, company research) eats about 5 minutes per lead, and it’s mentally exhausting.
  • HubSpot gets duplicates or incomplete contacts, so reporting and lifecycle automation become unreliable.
  • Sales never sees the best people fast enough, because “priority” lives in someone’s head or a messy spreadsheet.

The Solution: Enrich, score, and sync every Mailchimp signup to HubSpot (and Pipedrive)

This workflow starts the moment someone subscribes to your Mailchimp list. n8n pulls the subscriber payload, cleans it into reliable fields (email, name, timestamp), then sends the lead to an AI enrichment step that predicts useful business attributes like role, industry, and likely intent. From there, the workflow merges and validates the AI output, so you don’t end up with broken fields when parsing gets weird. Finally, it updates or creates the contact in HubSpot, creates the person in Pipedrive, and if the lead score clears your threshold, it automatically opens a priority deal for sales follow-up. No waiting on someone to “get to it.”

The workflow begins with a Mailchimp subscriber trigger, then runs enrichment and scoring with an AI agent powered by an OpenAI chat model. After a simple high-value check (score 70 or above), it syncs the enriched record to HubSpot and Pipedrive, and creates a priority deal only when it’s earned.

What You Get: Automation vs. Results

Example: What This Looks Like

Say you get 20 new Mailchimp signups in a day. If you spend about 5 minutes per lead to research basics and create/update records, that’s roughly 100 minutes, and it still won’t be consistent across the team. With this workflow, the “human time” becomes closer to 10 minutes total: you glance at the priority deals it created, spot-check a couple enrichments, and move on. The rest runs in the background while you do real work.

What You’ll Need

  • n8n instance (try n8n Cloud free)
  • Self-hosting option if you prefer (Hostinger works well)
  • Mailchimp to trigger on new list subscribers
  • HubSpot to update or create CRM contacts
  • Pipedrive for people records and priority deals
  • OpenAI API key (get it from the OpenAI API dashboard)

Skill level: Intermediate. You’ll connect accounts, paste an API key, and adjust a few fields and scoring rules.

Don’t want to set this up yourself? Talk to an automation expert (free 15-minute consultation).

How It Works

A new Mailchimp subscriber comes in. The workflow triggers on a list signup, so you’re not relying on exports or daily checks.

The subscriber data gets cleaned up. A parsing step normalizes the payload into dependable fields (like email, name, and signup time), which helps later updates match the right contact.

AI enrichment and scoring run once per lead. An AI agent (using an OpenAI chat model) predicts attributes such as likely role, company context, industry, intent signals, and a lead score you can act on.

CRMs get updated, and sales gets the best leads. HubSpot receives the enriched contact update, Pipedrive gets a person record, and a simple gate creates a new priority deal when the score is 70 or higher.

You can easily modify the scoring threshold to match your ICP, so “priority” reflects your business instead of a generic rule. See the full implementation guide below for customization options.

Step-by-Step Implementation Guide

Step 1: Configure the Mailchimp Trigger

Set up the workflow to start when a new subscriber joins your Mailchimp list.

  1. Add the 📩 Mailchimp Subscribe Trigger node as the trigger.
  2. Set List to YOUR_MAILCHIMP_LIST_ID.
  3. Confirm Events includes subscribe and Sources includes admin.
  4. Credential Required: Connect your mailchimpApi credentials.

Step 2: Parse Incoming Subscriber Data

Normalize Mailchimp webhook payloads into a clean lead object for downstream processing.

  1. Add the 📊 Subscriber Data Parser node after 📩 Mailchimp Subscribe Trigger.
  2. Paste the provided JavaScript into Code to map fields like email, full name, and list ID.
  3. Verify it outputs email, fullName, and subscribedAt in the resulting JSON.

Step 3: Set Up AI Enrichment

Use an AI agent to enrich the lead, then merge AI output with the original subscriber data.

  1. Add 🤖 Enrichment AI Agent after 📊 Subscriber Data Parser.
  2. Set Text to the prompt with expressions: =You are an expert lead enrichment AI... Email: {{ $json.email }} Name: {{ $json.fullName }} ...
  3. Attach 🧠 OpenAI Chat Model as the language model for 🤖 Enrichment AI Agent.
  4. Credential Required: Connect your openAiApi credentials on 🧠 OpenAI Chat Model (not on the agent node).
  5. Add 🔎 Enrichment Merge Parser after 🤖 Enrichment AI Agent to merge AI results with the original subscriber data.

Node Flow: 🤖 Enrichment AI Agent outputs to 🔎 Enrichment Merge Parser.

Step 4: Configure Routing and CRM Outputs

Route enriched leads for CRM updates and create high-priority deals for premium leads.

  1. Connect 🔎 Enrichment Merge Parser to 💎 Premium Lead Gate, 📊 HubSpot Contact Update, and 👤 Pipedrive Person Add in parallel.
  2. In 💎 Premium Lead Gate, set the condition to {{ $json.leadScore }} is greater than or equal to 70.
  3. In 📊 HubSpot Contact Update, set Email to {{ $('📊 Subscriber Data Parser').item.json.email }} and map fields like Industry to {{ $json.industry }}, Job Title to {{ $json.jobTitle }}, and Company Name to {{ $json.company }}.
  4. Credential Required: Connect your hubspotAppToken credentials.
  5. In 👤 Pipedrive Person Add, set Name to {{ $('📊 Subscriber Data Parser').item.json.fullName }} and Email to {{ $('📊 Subscriber Data Parser').item.json.email }}.
  6. Credential Required: Connect your pipedriveApi credentials.
  7. Connect the true path of 💎 Premium Lead Gate to 💼 Create Priority Deal and set Title to High Value Lead - {{ $('📊 Subscriber Data Parser').item.json.fullName }} and Value to {{ Math.round($json.leadScore * 10) }}.
  8. Credential Required: Connect your pipedriveApi credentials for 💼 Create Priority Deal.

Parallel Execution: 🔎 Enrichment Merge Parser outputs to both 💎 Premium Lead Gate and 📊 HubSpot Contact Update and 👤 Pipedrive Person Add in parallel.

⚠️ Common Pitfall: If the AI returns non-JSON content, 🔎 Enrichment Merge Parser will fall back to defaults. Keep the agent prompt strict and JSON-only.

Step 5: Test and Activate Your Workflow

Validate the end-to-end flow and then enable it for production use.

  1. Click Execute Workflow and trigger a test subscription in your Mailchimp list.
  2. Confirm 📊 Subscriber Data Parser outputs a normalized lead record with email and fullName.
  3. Check 🔎 Enrichment Merge Parser for enriched fields like jobTitle, company, and leadScore.
  4. Verify 📊 HubSpot Contact Update and 👤 Pipedrive Person Add receive the lead, and that 💼 Create Priority Deal is created only when leadScore ≥ 70.
  5. Turn on the workflow using the Active toggle to enable live processing.
🔒

Unlock Full Step-by-Step Guide

Get the complete implementation guide + downloadable template

Common Gotchas

  • HubSpot credentials can expire or need specific permissions. If things break, check your connected app permissions in HubSpot settings first.
  • If you’re using Wait nodes or external rendering, processing times vary. Bump up the wait duration if downstream nodes fail on empty responses.
  • Default prompts in AI nodes are generic. Add your brand voice early or you’ll be editing outputs forever.

Frequently Asked Questions

How long does it take to set up this Mailchimp HubSpot automation automation?

About 30 minutes if your accounts and fields are already decided.

Do I need coding skills to automate Mailchimp HubSpot automation?

No. You’ll mainly connect Mailchimp, HubSpot, Pipedrive, and add your OpenAI API key. The only “technical” part is editing a few field mappings and the score threshold.

Is n8n free to use for this Mailchimp HubSpot automation workflow?

Yes. n8n has a free self-hosted option and a free trial on n8n Cloud. Cloud plans start at $20/month for higher volume. You’ll also need to factor in OpenAI API costs, which are usually a few cents per enriched lead depending on your prompt length.

Where can I host n8n to run this automation?

Two options: n8n Cloud (managed, easiest setup) or self-hosting on a VPS. For self-hosting, Hostinger VPS is affordable and handles n8n well. Self-hosting gives you unlimited executions but requires basic server management.

Can I customize this Mailchimp HubSpot automation workflow for a different lead scoring model?

Yes, and you should. You can adjust the AI prompt that produces the lead score, then change the “priority” condition that checks for scores of 70 or higher. Common tweaks include adding your ICP rules (job titles, industries, regions), weighting intent phrases (“pricing,” “demo,” “integration”), and forcing a minimum score when the email domain matches a target account list.

Why is my Mailchimp connection failing in this workflow?

Usually it’s an expired Mailchimp token or the trigger is pointed at the wrong audience/list. Reconnect Mailchimp in n8n credentials, then confirm the exact list ID used by the trigger. If you’re testing with your own email, also check if Mailchimp is blocking duplicates or placing you in a pending double opt-in state.

How many leads can this Mailchimp HubSpot automation handle?

A lot. On n8n Cloud, it depends on your monthly execution limit, while self-hosting is mainly limited by your server and the speed of the HubSpot/Pipedrive APIs. Practically, most small teams run hundreds or a few thousand leads a month without thinking about it, and only revisit limits when they scale campaigns.

Is this Mailchimp HubSpot automation better than using Zapier or Make?

Often, yes, because AI enrichment plus branching logic gets expensive fast on Zapier/Make. n8n also gives you more control over how you parse and merge AI output, which matters when you’re writing into HubSpot properties and you want fewer “weird” values. The self-hosted option is a big deal if you’re running lots of signups and don’t want per-task pricing. That said, if your process is just “Mailchimp subscriber → create HubSpot contact” with no enrichment, Zapier can be quicker to click together. Talk to an automation expert if you want help picking the cleanest approach.

Once this is running, new subscribers stop being “just a list.” They become scored, enriched contacts your sales team can trust, with priority leads surfaced automatically.

Need Help Setting This Up?

Our automation experts can build and customize this workflow for your specific needs. Free 15-minute consultation—no commitment required.

Lisa Granqvist

Workflow Automation Expert

Expert in workflow automation and no-code tools.

×

Use template

Get instant access to this n8n workflow Json file

💬
Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Get a free quote today!
Get a free quote today!

Tell us what you need and we'll get back to you within one working day.

Launch login modal Launch register modal