Mortgage‑Planner Showcase — One Client Query, Four Protocol Layers Explained
Client request:
“I’d like a pre‑approval strategy for a $600 k home purchase in Austin, 10 % down, aiming for the lowest 30‑year fixed rate I can qualify for. Show me lender options, estimated monthly payment, and how paying +$300 extra each month changes amortization.”
Below you’ll see how that single request evolves through the same four communication layers we’ve explored: MCP‑only → intra‑enterprise A2A → cross‑domain ANP → Agora (language‑to‑protocol). Read the Newsletter
For each, we call out the engineering moves and how SimplAI lets you ship the flow with minimal code.
1 | MCP‑Only — One Mega “Mortgage Agent” + Tool Calls
Build notes
Do this in SimplAI
Choose the “Tool‑Use” pattern, wire three REST connectors, click deploy. Cost & latency metrics appear per tool call in the Studio console.
2 | Intra‑Enterprise A2A — Specialist Micro‑Agents
User
└──> Mortgage‑Planner (Coordinator)
├── query → Credit‑Agent
├── query → Rate‑Shopper‑Agent
├── query → Amortization‑Agent
└── query → PMI‑Advisor‑Agent
Why it’s better
SimplAI magic
Graph‑designer drag‑and‑drop; every edge is an A2A envelope with FIPA‑style performatives (query, inform, propose). Studio’s trace view shows which specialist delays the plan.
3 | ANP — Pulling Live, Authoritative Data Across Domains
Now bring in external, source‑of‑truth agents:
How it works
Engineering details
SimplAI enablement
Cross‑Domain Gateway auto‑wraps ANP envelopes, validates partner certs, and registers cost in your org ledger.
4 | Agora Layer — Language to Protocol Generation
An Agora Synthesiser converts the user’s plain English into strict JSON protocols:
NLU → {
loan_amount: 540000, // 600k purchase, 10% down
term_years: 30,
type: "fixed",
extra_monthly: 300
}
Generated Protocols:
CreditProtocol { score_min:700 }
RateProtocol { amount:540000, term:30, fixed:true }
AmortProtocol { amount:540000, term:30, extra:300 }
InsuranceProtocol { zip:"78701", coverage:600000 }
These schemas are broadcast to the relevant agents. If the client later asks, “Compare with a 15‑year term,” Agora regenerates the protocol set automatically—no engineer touches YAML.
SimplAI preview
Upcoming “Protocol Synthesiser” panel: paste a prompt, get versioned JSON Schema plus routes. Guardrails auto‑inspect for PII leaks and infeasible loan terms.
Putting the Layers Together — Gains & Trade‑Offs
SimplAI supports all four out‑of‑the‑box. Start monolithic, split to micro‑agents, federate with banks—protocols and observability stay identical throughout.
Key Takeaways
Ready to launch a mortgage‑planning swarm in a weekend? Grab a free SimplAI workspace or email sandeep@simplai.ai for a live walk‑through.
Happy Agentic!!!!!