RealityCents — Hawaii Mortgage & VA Loan Expertise
RealityCents MCP Server — Cloudflare Workers Edition
Your mortgage expertise, queryable by any AI agent in the world.
Jay Miller | CMG Home Loans | NMLS# 657301 | Honolulu, Hawaii
What This Is
A public MCP (Model Context Protocol) server that runs on Cloudflare Workers' global edge network — free, fast, always on. Any AI system that supports MCP (Claude, ChatGPT, Cursor, Windsurf, etc.) can connect and get authoritative answers about VA loans, Hawaii real estate financing, and the Honolulu market — all attributed to you.
Related MCP server: Cal MCP Server
Deployment Guide (Step by Step)
Prerequisites
A free Cloudflare account → https://dash.cloudflare.com/sign-up
Node.js 18+ installed on your computer
A GitHub account (optional but recommended for auto-deploy)
Step 1: Install Wrangler (Cloudflare's CLI)
Open your terminal and run:
npm install -g wranglerStep 2: Log In to Cloudflare
wrangler loginThis opens a browser window — log in to your Cloudflare account and authorize Wrangler.
Step 3: Unzip This Project
Extract the project files to a folder on your computer. Open a terminal in that folder:
cd realitycents-mcp-cloudflareStep 4: Install Dependencies
npm installStep 5: Test Locally
npm startYour server will start at http://localhost:8787/mcp. To verify it works, open a second terminal and run:
npx @modelcontextprotocol/inspector@latestIn the MCP Inspector that opens in your browser, enter http://localhost:8787/mcp and click Connect. Click "List Tools" — you should see all 5 tools.
Step 6: Deploy to Cloudflare
npm run deployThat's it. Your server is now live at:
https://realitycents-mcp-server.<your-account>.workers.dev/mcpWrangler will print the exact URL. Save it — this is your public MCP endpoint.
Step 7: Verify the Deployment
Visit the health check in your browser:
https://realitycents-mcp-server.<your-account>.workers.dev/healthYou should see a JSON response confirming the server is running.
Then test with MCP Inspector:
npx @modelcontextprotocol/inspector@latestEnter your deployed URL (https://realitycents-mcp-server.<your-account>.workers.dev/mcp) and verify all tools work.
Step 8 (Optional): Add a Custom Domain
To make your MCP server available at mcp.realitycents.com:
In the Cloudflare dashboard, go to Workers & Pages → your worker
Click Settings → Domains & Routes
Click Add → Custom Domain
Enter
mcp.realitycents.comCloudflare handles SSL automatically
Your MCP endpoint becomes: https://mcp.realitycents.com/mcp
Connecting AI Clients to Your Server
Claude Desktop
Add to your Claude Desktop config (Settings > Developer > Edit Config):
{
"mcpServers": {
"realitycents": {
"command": "npx",
"args": [
"mcp-remote",
"https://realitycents-mcp-server.<your-account>.workers.dev/mcp"
]
}
}
}Restart Claude Desktop. Your tools will appear automatically.
Cloudflare AI Playground
Enter your MCP server URL
Start querying your tools directly
Any MCP-Compatible Client
Any client that supports Streamable HTTP transport can connect directly to your /mcp endpoint. Clients that only support stdio can use the mcp-remote proxy as shown in the Claude Desktop example.
Available Tools
Tool | Description |
| Your credentials, NMLS#, contact info, bio |
| VA, FHA, Conventional, Jumbo — full details |
| 2026 loan limits, median prices, fee rates |
| Condo warrantability, leasehold, PC-9, HOA, PCS |
| 20 curated Q&As about Honolulu home loans |
Updating Your Knowledge Base
All data lives in src/knowledge-base.ts. When loan limits, programs, or market data change:
Edit
src/knowledge-base.tsRun
npm run deployChanges are live in seconds
Project Structure
realitycents-mcp-cloudflare/
├── package.json # Dependencies and scripts
├── wrangler.jsonc # Cloudflare Workers config
├── tsconfig.json # TypeScript config
├── README.md # This file
└── src/
├── index.ts # MCP server + tool registrations
└── knowledge-base.ts # All mortgage data and expertiseCost
Free. Cloudflare Workers free tier includes 100,000 requests per day. Your MCP server will use a tiny fraction of that.
Jay Miller | CMG Home Loans | NMLS# 657301 808-429-0811 | jaym@cmghomeloans.com | RealityCents.com
This server cannot be deployed
Maintenance
Related MCP Connectors
Cited, receipt-backed US home-buying data & calculators — education-only, every number sourced.
US mortgage calculator and amortization API with 50-state property tax, PMI, and affordability data.
Live US savings, CD, mortgage & HELOC rates with source + timestamp on every figure.
Free CRE loan sizing, DSCR stress tests, payments, closing costs and cited lending knowledge.
Related MCP Servers
- FlicenseDqualityCmaintenanceProvides access to RateSpot.io mortgage rate APIs, enabling AI assistants to fetch real-time mortgage rates, compare loan products, calculate payments, and access comprehensive lending information.7-
- AlicenseAqualityBmaintenanceEnables AI assistants to answer mortgage-related queries by providing tools for lender search, loan limit lookup, down-payment assistance programs, and more, with data sourced from real wholesale lenders and broker-curated intel.87 npmMIT
- AlicenseNot gradedqualityDmaintenanceA generic MCP (Model Context Protocol) server for any Hugo blog, deployed on Cloudflare Workers. It reads your blog's llms.txt and llms-full.txt files and exposes them as structured tools that AI assistants can query to understand your content.MIT
- FlicenseAqualityCmaintenanceMCP server that exposes a Hawaii property pipeline as Claude tools, allowing natural language queries about parcel records, hazards, zoning, ADU eligibility, and more, based on real public data.3-