Back to The Times of Claw

CRM for Mortgage Brokers

How mortgage brokers manage loan pipelines, borrower relationships, lender contacts, and compliance with a local-first AI CRM. Private and fast.

Mark Rachapoom
Mark Rachapoom
·7 min read
CRM for Mortgage Brokers

CRM for Mortgage Brokers

Mortgage brokers need a CRM that tracks borrower pipelines, manages lender relationships, stays on top of rate lock and closing deadlines, and keeps sensitive financial data private. DenchClaw is a local-first, open-source AI CRM where all data stays on your machine in a local DuckDB database. Here's how to configure it for a mortgage brokerage.

Why Mortgage Brokers Need a Dedicated CRM#

The mortgage business runs on deadlines and relationships. A loan that misses its rate lock expiration or closing date can cost a borrower thousands of dollars. A referral relationship with a real estate agent can generate 20+ loans a year — or go cold if you don't stay in touch.

Most mortgage CRMs are expensive, subscription-based platforms with features you don't need and inflexibility you can't afford. And they store borrower financial data — income, assets, credit scores — on third-party servers that may not meet your security standards.

DenchClaw gives you full control. Build the data model your brokerage needs, store everything locally, and query your pipeline with plain English.

Setting Up DenchClaw for Mortgage Brokerage#

1. Install DenchClaw

npx denchclaw

Opens at http://localhost:3000. Data is stored in a DuckDB file on your machine.

2. Create a Borrowers object

Your client relationship record:

  • Name (text)
  • Co-Borrower (text)
  • Phone (text)
  • Email (text)
  • Status (select: Prospect, Pre-Qual, Application, Processing, Underwriting, Approved, Closed, Fallen Out, Declined)
  • Referral Source (linked to Referral Partners)
  • Loan Officer (text)
  • Processor (text)
  • Notes (text)

3. Create a Loans object

Track each loan file separately (a borrower may have multiple):

  • Borrower (linked)
  • Property Address (text)
  • Loan Type (select: Purchase, Refinance, Cash-Out Refi, HELOC, Construction, FHA, VA, USDA, Jumbo, Commercial)
  • Loan Amount (number)
  • Purchase Price (number)
  • Rate (number)
  • Rate Lock Date (date)
  • Rate Lock Expiration (date)
  • Application Date (date)
  • Estimated Closing Date (date)
  • Actual Closing Date (date)
  • Lender (linked to Lenders)
  • Status (select: Pre-Qual → Application → Processing → Underwriting → Conditional Approval → Clear to Close → Closed → Fallen Out)
  • Stage Notes (text)

4. Create a Lenders object

Your wholesale lender panel:

  • Name (text)
  • AE Name (text)
  • AE Phone (text)
  • AE Email (text)
  • Products (text — note their strong programs)
  • Min FICO (number)
  • Max LTV (number)
  • Turn Times (text)
  • Status (select: Active, Approved, Inactive)
  • Notes (text)

5. Create a Referral Partners object

Real estate agents, financial advisors, divorce attorneys, and other sources:

  • Name (text)
  • Organization (text)
  • Type (select: Real Estate Agent, Financial Advisor, Attorney, Accountant, Builder, Other)
  • Phone (text)
  • Email (text)
  • Referrals This Year (number)
  • Referrals This Month (number)
  • Last Referral Date (date)
  • Last Contact Date (date)
  • Status (select: Active, Nurturing, Inactive)
  • Notes (text)

Managing the Loan Pipeline#

The loan pipeline is time-critical. Rate lock expirations, appraisal deadlines, and closing dates have real financial consequences. DenchClaw's AI query interface makes it easy to stay on top of every file.

Daily pipeline check:

"Show all loans in active status sorted by estimated closing date" "Which rate locks expire in the next 7 days?" "Show all loans in conditional approval status"

Weekly review:

"Which loans have been in processing for more than 30 days?" "Show all loans with estimated closing date this month"

Use the kanban view with loan stages as columns:

Pre-Qual → Application → Processing → Underwriting → Conditional Approval → Clear to Close → Closed

Drag loan cards as they progress. Color-code by priority or rate lock urgency. For instructions, see how to configure kanban views in DenchClaw.

Real Estate Agent Relationship Management#

For most mortgage brokers, 3-5 real estate agent relationships drive the majority of business. Maintaining these relationships — and systematically growing them — is where revenue growth comes from.

Use your Referral Partners object to track:

Who's sending business: "Show all referral partners ranked by referrals sent this year"

Who needs attention: "Show all active referral partners with no referral in the past 45 days"

Who to develop: "Show all referral partners in 'Nurturing' status sorted by last contact date"

Build a regular outreach routine:

  • Call or text after every closed loan (thank the agent, ask for feedback)
  • Monthly market update email to your full agent list
  • Quarterly lunch or coffee with top 5 referral partners
  • Attend real estate office meetings when invited

Track every touchpoint in the Notes field so you remember what you discussed last time.

For more on managing referral networks, see how to build referral pipelines in DenchClaw.

Past Client Follow-Up and Refi Watch#

A closed loan is the beginning of a relationship, not the end. Clients who refinanced two years ago may be ready to refinance again when rates drop. Clients who bought three years ago may want to move up.

Create a follow-up workflow for past clients:

1. Set up a Past Client Follow-Up object:

  • Borrower (linked)
  • Loan Closed (date)
  • Current Rate (number)
  • Loan Balance (number — approximate)
  • Target Refi Rate (number — when does it make sense to refinance?)
  • Next Outreach Date (date)
  • Status (select: Monitoring, Reached Out, In Process, Not Interested)

2. Query when rates move: "Show all past clients with current rate above 7% who haven't been contacted in 90 days"

3. Segment by loan type: "Show all FHA borrowers who could benefit from a conventional refi based on estimated equity"

This turns your past client database into an ongoing pipeline generator.

Compliance Documentation#

Mortgage brokers operate under significant regulatory oversight (RESPA, TILA, SAFE Act, state licensing). DenchClaw can supplement your formal compliance system with a relationship-level documentation layer.

Log key interactions:

  • Pre-qualification conversations (what product you discussed, what they qualified for)
  • Rate lock discussions (when you locked, at what rate, why)
  • Adverse action documentation (why a loan fell out)

Create a Compliance Log object:

  • Borrower (linked)
  • Date (date)
  • Type (select: Initial Consult, Rate Lock, Disclosure Sent, Change of Circumstance, Adverse Action, Complaint)
  • Summary (text)
  • Handled By (text)

For full regulatory compliance, you'll still need your LOS (Loan Origination System) for formal disclosures and record-keeping. DenchClaw supplements that with relationship context.

Frequently Asked Questions#

Can DenchClaw replace my LOS (Encompass, Calyx, BytePro)? No. Your LOS handles formal loan processing, disclosures, and document collection. DenchClaw is a CRM — it handles relationship management, pipeline visibility, and business development. They serve different functions.

Is borrower financial data safe in DenchClaw? DenchClaw stores data locally in a DuckDB file on your machine. Nothing is sent to external servers by default. Best practice is to store only the relationship data you need in DenchClaw and keep detailed financial documentation in your LOS.

Can I import my existing pipeline from my current CRM? Yes. Export a CSV from your current system and import it into DenchClaw. Map the fields to your DenchClaw schema.

Can multiple loan officers use DenchClaw? Yes. Run DenchClaw on a shared office server and each loan officer accesses it via browser. Filter views by assigned loan officer to see individual pipelines.

How do I handle compliance with Reg Z and RESPA in DenchClaw? DenchClaw is not a disclosure management platform. Use it for relationship tracking and pipeline management. Your LOS handles regulatory disclosures. DenchClaw's compliance log is supplementary documentation, not a substitute for formal records.

Ready to try DenchClaw? Install in one command: npx denchclaw. Full setup guide →

Mark Rachapoom

Written by

Mark Rachapoom

Building the future of AI CRM software.

Continue reading

DENCH

© 2026 DenchHQ · San Francisco, CA