Score Inbound Leads in Clay with Muse Glimmer
Reps waste time on low-fit leads because every new submission looks the same in a spreadsheet. You need something to read each lead's context and rank them before anyone picks up the phone. Meta just released Muse Glimmer — a free, 30-billion-parameter AI model you can run on your own laptop — so you can do that scoring without paying per API call.
Install Ollama and pull Muse Glimmer
Ollama is a free desktop app that lets you run AI models on your own computer — no cloud account needed. Install it from ollama.com, then open your computer's terminal (the text-input app on Mac or Windows) and run the two commands below. The first downloads Muse Glimmer (about 18 GB, so give it time). The second starts it as a local server your other tools can talk to over the internet address `localhost:11434`.
Create a Clay table with a webhook source
Clay is a spreadsheet-like tool where each row is a lead and each column can call an API or run AI automatically. A webhook is a special URL — when your form or CRM sends lead data to that URL, Clay creates a new row instantly. Sign up at clay.com (free tier available), then follow the steps below.
Add waterfall enrichment columns
Before scoring, Clay needs real data about each lead — company size, industry, website. A waterfall means Clay tries Provider A first; if that misses, it tries Provider B automatically. You don't have to manage this — you just pick the providers once. Click the column-add button to get started.
Add a Claygent column to read the lead's website
Claygent is Clay's built-in AI research agent. Give it a plain-English question and it visits the lead's website and returns a structured answer. This gives Muse Glimmer richer context to score against. Click Add enrichment, search for Claygent, then write a prompt.
Call Muse Glimmer to score each lead
Now you connect Clay to your local Muse Glimmer. Clay's HTTP API enrichment column lets any column call an external URL and store the response. Your Ollama server is listening at `http://localhost:11434` — but Clay (running in the cloud) can't reach your laptop's localhost directly. Use a free tunnel tool like ngrok (`ngrok http 11434`) to get a public URL first, then paste that into Clay. The moment a new row arrives, Clay sends the lead's data to Muse Glimmer and writes back a score.
Parse the score and add a routing action
Muse Glimmer returns raw JSON text. Add a formula column (type `=` in any blank column header, then use the formula editor) to extract the `tier` field from that text. Then add one final enrichment column — Send Email or Slack message — so your team gets an alert only when tier equals "Tier 1". Everything else sits quietly in Clay for weekly review.
What you get
You end up with a Clay table where every new inbound lead is automatically enriched, researched, and scored by Muse Glimmer running free on your own machine. Tier 1 leads fire a Slack alert the moment they arrive; everything else waits quietly for review. Rough effort: ~2–3 hours to set up. Free: Clay free tier, Ollama free, Muse Glimmer Apache 2.0. Paid only if you exceed Clay's free enrichment credits or need a paid ngrok plan for a persistent public URL..