realestate-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@realestate-mcpfind me 3-bed houses in Bondi under $5m"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
realestate-mcp
An MCP server that lets Claude Code search realestate.com.au — for-sale, rental, and sold listings, with full property detail.
> find me 3-bed houses in Bondi under $5m
25 listings, 64 total across 3 pages
1 Miller Street, Bondi NSW 2026 Onsite auction 29 August 5bd 4ba 3car House
25 Wellington Street, Bondi Auction 5bd 4ba 2car House
8B Castlefield Street, Bondi Buyers Guide $3,000,000 3bd 2ba 1car HouseRequirements
Node.js 20+
Google Chrome installed (the real browser — see How it works)
Related MCP server: Realty In Au MCP Server
Setup
npm install && npm run buildThen run the one-time warm-up. A Chrome window opens for a few seconds and closes itself:
node dist/index.js setupRegister with Claude Code:
claude mcp add realestate -- node "E:/Personal Projects/RealEstateMCP/dist/index.js"Tools
Tool | What it does |
| Search buy / rent / sold by location, with price, bed, bath, car, land-size and property-type filters. 25 results per page. |
| Full detail for one listing — description, all photos, floorplans, agents, agency ratings, suburb market insights. Takes a URL or bare listing ID. |
| Turn |
Returned fields
Address (with suburb/state/postcode), price display, bedrooms, bathrooms, car spaces, studies, land and building size, property type, agency (with average rating and review count), agents (name, job title, profile URL), inspection times and auction dates as ISO 8601 with offset, description, photo and floorplan URLs.
Results include listings REA blends in from neighbouring suburbs; those are flagged isSurrounding: true.
How it works
realestate.com.au is behind Kasada bot protection. Everything in this server is shaped by that:
Raw HTTP does not work. Every endpoint — including
lexa.realestate.com.au/graphqlandservices.realestate.com.au— returns429with ax-kpsdk-ctheader. Those APIs are scoped to signed mobile-app tokens.Headless does not work from a cold start. Plain Playwright, Playwright with anti-automation flags, and even patched Chrome all get
429on a fresh profile.What works: patchright driving your real installed Chrome with a persistent profile, warmed up headed once. Kasada issues its challenge, the browser solves it, and the token persists in the profile directory. Headless works from then on.
That's why setup opens a visible window once, and why bundled Chromium isn't used — it's fingerprinted and blocked.
Data is read from the page's server-side hydration blob rather than the DOM:
<script>window.ArgonautExchange={ "resi-property_listing-experience-web": {
"urqlClientCache": "{\"<hash>\":{\"data\":\"{…}\"}}" }}</script>
└─> buySearch.results.exact.items[].listing ← the real Lexa GraphQL objectsTwo things that will bite you if you modify the parser:
The app deletes
window.ArgonautExchangeafter hydration. Reading the live global returnsundefinedon a page that loaded perfectly fine. Parse the<script>tag's source text.Results are split into
results.exactandresults.surrounding. Reading onlyexactsilently drops up to two-thirds of a page.
Configuration
Env var | Default | Purpose |
|
| Where the warm browser profile lives |
|
| Browser channel; |
|
| Navigation timeout in ms |
Troubleshooting
"Blocked by realestate.com.au bot protection" — the profile has gone cold. Re-run node dist/index.js setup. Token lifetime is not documented; expect to re-warm occasionally.
"Could not launch Google Chrome" — install Chrome, or set REALESTATE_MCP_CHANNEL=msedge.
Warm-up fails repeatedly — rapid requests raise your Kasada score and it takes a while to decay. Wait a few minutes, or try from a different network.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityDmaintenanceEnables access to UK property listings, price estimates, agent information, and market data through the Zoopla API for searching properties for sale or rent with detailed filters and analytics.22MIT
- AlicenseBqualityDmaintenanceEnables access to Australian real estate data through the Realty In Au API, supporting property listings, agent/agency information, property details, school lookups, and property search with various filters.13MIT
- AlicenseAqualityAmaintenanceEnables natural-language access to Zillow real-estate data, including property search, details, Zestimate history, saved searches/homes, and market reports, by routing requests through the user's authenticated browser session.220289MIT
Related MCP Connectors
Stealth scraping & search. Bypasses Cloudflare, DataDome & LinkedIn via Cyborg HITL approach.
U.S. real-estate data: property records, AVM value + rent estimates, sale/rental listings.
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ErrolMc/RealEstateMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server