buildwithdew
Tutorials·9 min read·August 4, 2026

Build an AI lead scoring workflow with Make, Claude, and your CRM in a day

TL;DR

In this calm, practical ai lead scoring workflow tutorial, you’ll build a composite Fit/Intent scoring model in your CRM, then use Make and Claude (or Perplexity) to enrich scores and route hot leads automatically. The workflow runs end-to-end in under a day: trigger on new leads, call AI for structured scoring, update properties, and alert sales when thresholds are crossed, giving you measurable pipeline lift this quarter.

three intersecting dew-planes forming a central scored core — layered convergence — focused steady — cover for: Build an AI lead scoring workflow with Make, Claude, and your CRM in a day

Key takeaways

  • Define fit and intent rules in your CRM before adding AI scoring.
  • Use Make to orchestrate triggers, enrichment, Claude calls, and updates.
  • Map AI outputs to Fit, Intent, Total Score, and Tier properties in CRM.
  • Route hot leads via tasks, owner rotation, and real-time alerts at clear thresholds.
  • Combine HubSpot or Pipedrive native scoring with custom AI workflows.
  • Measure conversion and response-time lift by tier to validate pipeline impact.

AI lead scoring workflow tutorial: you can build a practical lead scoring and routing system in Make with Claude and HubSpot or Pipedrive in under a day by combining CRM rules, AI fit/intent analysis, and clear thresholds for sales alerts and owner assignment.349

How does this AI lead scoring workflow tutorial fit into modern sales ops?

Modern AI lead scoring workflows pair your CRM’s native scoring and automation with external AI for richer fit and intent analysis, then route leads using clear thresholds and tasks.34 This keeps sales teams focused on high-probability leads without abandoning proven rules-based models.

Since 2025, most practical tutorials follow the same pattern: trigger on an inbound event, enrich the lead, call an AI model for a 1–100 score plus reasoning, and update CRM properties and routing.9 HubSpot’s scoring editor and workflows make this especially straightforward, but the same structure works with Pipedrive or any other CRM.11

In this tutorial, we’ll build:

  • A composite score (Fit + Intent + Total) mapped to CRM properties.13
  • A Make scenario orchestrating Claude (or Perplexity) calls for AI scoring.10
  • Routing logic that moves leads between tiers (Hot, Warm, Nurture) and alerts sales within minutes.

The goal is pragmatic: measurable pipeline lift this quarter, not a speculative AI science project.

What lead scoring model should you use before adding AI?

You should define a simple, rules-based lead scoring model in your CRM first, with clear fit and intent criteria tested against known good and bad contacts.34

HubSpot’s own guidance is explicit: you start by defining criteria in the “HubSpot Score” property and test against a sample of qualified and unqualified leads before you automate anything.3 Recent 2026 templates push this further, recommending separate properties such as Fit Score, Intent Score, Total Lead Score, Lead Tier, Last Score Update, Score Decay Pause, Routing Owner, and Last High-Intent Action, plus four supporting workflows.13

A practical baseline scoring model:

  • Fit Score (0–50) – company size, industry, region, tech stack, role.
  • Intent Score (0–50) – pages viewed, demo requests, pricing visits, email engagement.
  • Total Lead Score (0–100) – Fit + Intent.
  • Lead Tier – A (80+), B (50–79), C (0–49).

Use CRM rules to populate Fit and Intent from structured fields first. AI should layer on nuance (subtle fit signals, job titles, website copy), not replace well-defined ICP logic.

Common mistakes to avoid when defining your model

Most teams get three things wrong:

  • Relying on AI without an ICP. Tutorials stress defining “what good looks like” and validating scoring against existing contacts; skipping this makes AI outputs inconsistent.34
  • Using a single score only. Modern templates emphasise separate Fit and Intent scores and a composite Total to avoid over-prioritising noisy but poor-fit activity.13
  • Routing all “high” scores identically. Best-practice workflows branch by tier: high-fit to sales, medium to nurture, low to disqualification or long-term tracking.78

Get the rules right first. Then AI will amplify a solid scoring system rather than compensate for a vague one.

What data should you send to Claude or Perplexity for lead scoring?

You should pass rich, structured and unstructured lead and account data to your AI model, including firmographics, behaviour, and free-text answers, then ask for structured JSON back.97

Recent recipes for HubSpot + AI recommend returning a lead score (1–100), qualification reason, key talking points, and recommended next action as JSON so you can map fields cleanly into CRM properties and workflows.9 That means the prompt matters: it has to describe your ICP, your scoring scale, and your routing thresholds.

For each new lead, aim to send:

  • Contact data: name, role, seniority, location, custom fields.
  • Company data: industry, size, domain, any enrichment you have.
  • Behavioural data: source, last page viewed, number of visits, assets downloaded.
  • Form/Chat text: “What problem are you trying to solve?”, free-text notes.

Claude (or Perplexity via its API) can then analyse fit and intent against your ICP description, returning a numeric score, tier, and notes that sales can actually use.1012

A practical scoring prompt you can reuse today

Your Make module for Claude might send a prompt along these lines:

{
  "instruction": "You are a B2B SaaS lead scoring assistant.",
  "input": {
    "lead": { /* contact fields */ },
    "company": { /* firmographics */ },
    "activity": { /* behaviour */ }
  },
  "output_format": {
    "fit_score": "0-50",
    "intent_score": "0-50",
    "total_score": "0-100",
    "tier": "A/B/C",
    "summary": "string",
    "recommendation": "string"
  }
}

This mirrors the 1–100 scoring recommendations seen in 2026 lead qualification recipes and makes mapping into HubSpot or Pipedrive straightforward.97

How do you wire Make, Claude, and your CRM together in under a day?

You wire Make, Claude, and your CRM together by building a single scenario: trigger on a new lead, enrich and validate data, call Claude for scoring, update CRM properties, and route high-scoring leads via tasks and alerts.107

A 2026 guide on Make + Claude for client lead generation breaks this down into five simple steps: trigger on new lead, validate data, enrich company info, have Claude analyse business and lead fit, and return an AI score used to update CRM and route high-scoring leads.10 That’s exactly the pattern we’ll reuse here.

Step 1: Choose your trigger

In Make, create a new scenario and select your trigger:

  • HubSpot: “New contact” or “Form submission” webhook.11
  • Pipedrive: “New deal” or “New lead” event.6

Best-practice tutorials emphasise triggers like form submissions, chat completions, or key property changes, so AI sees the richest possible data at the moment of interest.78

Step 2: Validate and enrich the lead

Add Make modules to:

  • Check required fields (email, company, role). If missing, create a task to complete later.
  • Enrich firmographics via your existing data sources or simple domain lookups.

Clean data is critical. AI scoring looks impressive, but if the underlying data is thin or wrong, your routing will be noisy.

Step 3: Call Claude (or Perplexity) for scoring

Add an HTTP or native AI module in Make to call Claude with the JSON schema above.10 Include your ICP description and scoring logic in the prompt to keep outputs consistent.

You can swap in Perplexity’s enterprise API here for analysis and suggestions while keeping Make as the orchestrator.12 The important part is structured output: numeric scores, tiers, narrative summary, and recommended next action.

Step 4: Map AI outputs into CRM properties

Use Make’s CRM modules to update properties:

  • Fit Score → numeric property.
  • Intent Score → numeric property.
  • Total Lead Score → numeric property.
  • Lead Tier → A/B/C string.
  • AI Summary / Recommendation → text fields.

HubSpot’s scoring UX and workflows are designed for exactly this kind of structure, with properties for fit, intent, total score, and tier assignment.1113 Pipedrive’s Pulse AI feature, launched in July 2025, already highlights promising leads and urgent activities, and your Make + Claude flow can complement this with deeper scoring and notes.615

Step 5: Route and alert based on thresholds

Finally, create routing logic in Make or your CRM workflows:

  • Total Score ≥ 80 (Tier A): rotate owner to sales, create “Follow up within 24 hours” task, send Slack/Teams alert, set lifecycle stage to Sales Qualified Lead.45
  • Total Score 50–79 (Tier B): assign to SDR, add to nurture sequence, create “Review within 3 days” task.
  • Total Score < 50 (Tier C): mark as nurture-only or disqualified, add to long-term campaigns.

A 2026 HubSpot + Opper AI guide calls out 75+ as a common starting threshold and uses Slack for instant notifications when leads cross it, while inbound lead recipes use a 1–10 scale where 7+ triggers a #hot-leads channel message.714 Your thresholds should reflect your volume and team capacity, but the pattern is the same: clear tiers, explicit actions.

How does this AI workflow compare to native CRM lead scoring tools?

Native CRM scoring tools (HubSpot, Pipedrive Pulse AI) handle rules and basic AI scoring well, but a Make + Claude workflow gives you more control over prompts, thresholds, and multi-system routing.116

Here’s a practical comparison.

CapabilityHubSpot native scoringPipedrive Pulse AIMake + Claude workflow
Scoring modelRules-based with optional predictive scoring.11AI highlights promising leads and urgent activities.615Custom Fit/Intent/Total logic in prompts and mapping.
Scale0–100 score with composite properties and tiers.13Internal AI qualification, no external prompt control.6Any scale (0–100, 1–10) with JSON outputs.9
RoutingWorkflows for owner rotation, tasks, lifecycle stages.45Basic assignment and activity surfacing.6Cross-tool routing via Make (Slack, email, data warehouses).
Setup time30–60 minutes for initial rules-based scoring.3Enabled in Pipedrive settings; AI launched July 2025.15Under a day for end-to-end scoring and routing.10
FlexibilityStrong inside HubSpot, limited beyond.11Tightly coupled to Pipedrive UI.6Fully custom, orchestrating multiple CRMs and channels.

For many teams, the right answer is hybrid: use HubSpot’s scoring and workflows as the backbone, run Make + Claude alongside them for nuanced fit/intent scoring, and plug into Pipedrive Pulse AI where your reps live.

How do you measure pipeline lift from this workflow this quarter?

You measure pipeline lift by tracking changes in lead response times, conversion rates between lifecycle stages, and rep focus on high-scoring tiers before and after deploying the workflow.25

HubSpot Academy and step-by-step workflow guides emphasise measuring conversion across defined stages (e.g., MQL → SQL → Opp) and tying routing rules to score thresholds so you can see whether higher scores correlate with faster progression and wins.15 To keep this grounded:

  • Baseline: Record current MQL → SQL conversion rates and average time to first touch.
  • After launch (4–8 weeks): Compare those metrics for A-tier leads vs others.
  • Qualitative: Ask reps whether AI summaries and recommendations help them prioritise and personalise outreach.

Because you’re using explicit properties like Fit Score, Intent Score, and Lead Tier, you can slice pipeline by AI tier and see whether the workflow is genuinely producing more qualified opportunities, not just more noise.13

You can iterate quickly: adjust thresholds (e.g., raise the hot-lead cutoff from 75 to 80), refine your Claude prompt with better ICP examples, or expand the data you send (adding product-interest tags or chat transcripts). The infrastructure you’ve built in a day – Make scenario, CRM properties, and routing rules – is flexible enough to support these revisions without starting over.

Frequently asked questions

What is an AI lead scoring workflow in practical terms?+

An AI lead scoring workflow uses tools like Make and Claude to analyse lead and account data, then return structured scores and routing recommendations that update your CRM automatically. You still define fit and intent rules in HubSpot or Pipedrive; AI layers on nuance, helping sales focus on high-probability leads instead of manually sorting every inbound contact.

How long does it take to build this workflow end-to-end?+

You can set up a basic AI lead scoring workflow in under a day: configure CRM properties for fit, intent, and total score, create a Make scenario triggered on new leads, call Claude with a structured scoring prompt, and map outputs back to your CRM. Routing rules and alerts then use thresholds like 75+ or 80+ to assign owners and tasks without manual effort.

What data should I send to Claude or Perplexity for lead scoring?+

A good workflow sends structured fields (role, industry, company size, source) plus behavioural data (pages viewed, forms submitted) and free-text answers into Claude or Perplexity. The AI returns a numeric fit and intent score, a composite total, a tier label, and a short summary. You then map these into CRM properties and use workflows to route hot, warm, and nurture leads differently.

Is this AI lead scoring workflow better for HubSpot or Pipedrive users?+

If you already use HubSpot, start there: define lead scoring properties, build workflows for routing, and add Make + Claude to enrich scores. Pipedrive users can complement Pulse AI with external scoring. Smaller teams or solo founders can still use this approach with lighter CRM setups, focusing on a single score and simple thresholds to trigger email and calendar tasks.

How do I know if my AI lead scoring workflow is actually working?+

Measure changes in MQL to SQL conversion rates, time-to-first-touch, and win rates for your top tiers before and after launch. Compare A-tier leads’ performance with B and C, and review whether reps follow up faster on AI-flagged hot leads. Use these metrics to adjust thresholds, refine prompts, or expand data inputs so the workflow produces sustained pipeline lift, not just activity.

Sources

  1. HubSpot Lead Scoring Explained: Setup, Thresholds, and Sales Handoffyoutube.com
  2. Lead Scoring and Routing - HubSpot Academyacademy.hubspot.com
  3. HubSpot Lead Scoring: Set Up Your First Automated Model ...databar.ai
  4. How to Build an AI-Powered Lead Scoring System with HubSpotlenkastudio.com
  5. HOW TO AUTOMATE LEAD SCORING IN HUBSPOT USING WORKFLOWS (STEP-BY-STEP GUIDE 2026)youtube.com
  6. Review and Pricing for Pipedrive CRM for Sales Automationbusiness.com
  7. HubSpot + Opper AI: Auto-Score Inbound Leads Guideaitoolrecipes.com
  8. How to Automate Lead Qualification with HubSpot Breeze AIblog.connectindigital.com
  9. Score Sales Leads with AI + HubSpot in 5 Stepsaitoolrecipes.com
  10. How I Automated Client Lead Generation Using Make.com and ...aidiscoveries.io
  11. Build lead scores to qualify contacts, companies, and dealsknowledge.hubspot.com
  12. Perplexity launches Enterprise Properplexity.ai
  13. HubSpot Lead Scoring Template | Artemis GTMartemisgtm.ai
  14. Automate Lead Scoring with HubSpot in 4 Stepsaitoolrecipes.com
  15. HubSpot vs. Pipedrive: A 2026 CRM Comparison Reportsaasbinder.com
#ai-workflows#lead-scoring#sales-automation#make-com#hubspot#pipedrive

Keep reading

a single dew-line threading through layered, tagged droplets that merge into one clarified core — left-to-right flow — focused calm — cover for: Build a Notion AI research‑to‑memo workflow over your notes
Tutorials·9 min read

Build a Notion AI research‑to‑memo workflow over your notes

In about 90 minutes you can turn Notion into a grounded research engine: one structured Research Notes database, a memo template with embedded AI blocks, and Q&A over your own workspace. Use external tools like Perplexity or GPT‑4 for web research, then let Notion AI organise, summarise, and draft memos from tagged notes. Human review and tight prompts keep the workflow reliable for teams and solo operators alike.

Aug 2, 2026
one disciplined dew-stream branching into distinct phases then recombining into a single brighter flow — horizontal progression — methodical assured — cover for: A Claude literature review workflow consultants can defend
Tutorials·9 min read

A Claude literature review workflow consultants can defend

This tutorial shows consultants how to build a Claude literature review workflow they can comfortably defend in a partner or client meeting. You’ll separate source gathering from AI synthesis, use Google Scholar, Perplexity, and Claude Projects in a clear pipeline, lock evidence tables, apply grounded prompts to control hallucinations, and add a claim-level verification loop and AI-disclosure note that align with 2025–2026 research best practices.

Jul 27, 2026
three interlinked dew-rings stepping upward in scale — diagonal progression — focused deliberate — cover for: Ship an AI research to slides workflow with Perplexity, Claude, and Canva
Tutorials·9 min read

Ship an AI research to slides workflow with Perplexity, Claude, and Canva

This tutorial walks consultants and operators through a practical AI research to slides workflow using Perplexity for sources, Claude or GPT‑4.1 for narrative, and Canva/Pitch for design. You’ll set up a structured research and slide-ready brief, chain the tools cleanly, control slide density at the outline stage, and add guardrails for citations, brand alignment, and manual polish so decks stay client-safe and on-story.

Jul 24, 2026