Real Estate MCP Server
Property search and market analysis from Redfin with neighborhood insights
š Real Estate MCP ā AI Property Search
Pricing
from $10.00 / 1,000 results
Try for free
Go to Apify Store
š Real Estate MCP ā AI Property Search
nexgendata/real-estate-mcp-server
Try for free
Ask questions about this Actor
š Real estate, property listings, home prices, MLS data MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search properties + rentals + home valuations across Zillow, Redfin, Realtor.com via MCP. Free tier available.
Pricing
Rating
0.0
(0)
Developer
Stephan Corbeil
Maintained by Community
Actor stats
0
Bookmarked
26
Total users
10
Monthly active users
6 days ago
Last modified
Categories
AI
Travel
MCP servers
README
Input
Pricing
Endpoints
Issues
š¤ Real Estate MCP Server ā AI-Native Property Data for Claude, ChatGPT & LLM Agents
Connect AI agents to live U.S. real-estate listings, comps, and market stats through the Model Context Protocol. A drop-in replacement for HouseCanary, CoreLogic, and ATTOM Data ā without the enterprise contracts.
Why This MCP Server Beats Zillow API, HouseCanary, CoreLogic & ATTOM Data
| Feature | NexGenData Real Estate MCP | Zillow / Redfin direct API | HouseCanary | CoreLogic | ATTOM Data |
|---|---|---|---|---|---|
| Cost | $0.01 per result, pay-per-event | Restricted / partner-only | $$$$ enterprise contract | $$$$ enterprise contract | $$$ per-record pricing |
| AI agent integration | Native MCP ā Claude Desktop, Cursor, n8n | None ā REST only | None | None | None |
| Time-to-first-call | <60 seconds | Weeks of partner approval | Sales cycle | Sales cycle | Onboarding required |
| Auth | Apify API token | OAuth + partner status | License key | License key | API key + quota |
| Coverage | Property listings, comps, sold history, market stats | Limited (deprecated public API) | Valuations | Property records | Property + transactions |
| Output format | Structured JSON streamed to LLM tools | JSON | XML / JSON | JSON | JSON |
Most teams pick this MCP server because it is the only way to give Claude or ChatGPT direct, structured access to real-estate data without writing custom scrapers or signing six-figure enterprise contracts.
What You Get
- Property search by city, ZIP, address, or filters (beds/baths/price/sqft)
- Full listing detail: price history, days on market, photos, description, agent
- Sold comparables for valuation modeling
- Neighborhood market stats (median price, inventory, price-per-sqft trends)
- Tax history and assessment data where available
- Structured JSON responses optimized for LLM function-calling
Use Cases
- AI buyer agents ā Claude or GPT-4 negotiates listings, pulls comps, recommends offers
- Real-estate co-pilots ā chat-first investor tools that answer "what's the average DOM in 90210?"
- Underwriting automation ā feed comparable sales into LLM-driven valuation models
- Lead-qualifying chatbots ā answer prospects' property questions with live MLS-grade data
- Investor research agents ā multi-step reasoning chains pulling listings ā comps ā cap rates
- n8n / Make.com agent workflows ā trigger an MCP tool from any low-code automation
Quick Start
from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("nexgendata/real-estate-mcp-server").call(run_input={
"tool": "search_properties",
"params": {"location": "Austin, TX", "max_price": 750000}
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)
Or connect it as a tool server in Claude Desktop's mcp_servers config ā Claude will auto-discover every exposed tool.
Pricing
Pay-per-event ā you only pay for results that hit your dataset.
- Actor Start: $0.00005 per GB-instance
- Result: $0.01 per dataset item
A typical agent reasoning chain costs $0.05ā$0.30 ā orders of magnitude cheaper than HouseCanary or CoreLogic enterprise contracts.
Related NexGenData Actors
| Use case | Actor |
|---|---|
| Redfin listings, sold history, comps in flat JSON | Redfin Real Estate Scraper |
| UK property listings from Rightmove | Rightmove UK Real Estate |
| Singapore HDB resale transactions | SG HDB Resale Prices |
| Singapore URA private-property transactions | SG URA Property Transactions |
| Denmark housing market via Boliga | Boliga Denmark Real Estate |
| AI-native financial data for LLM agents | Finance MCP Server |
| Local-business + map data MCP for agents | Google Maps MCP Server |
| Developer / SaaS tooling MCP for agents | Developer Tools MCP Server |
Input Example
Most agents call the MCP server with no parameters ā the LLM picks tools at reasoning time. For Apify console runs:
{
"debug": false,
"maxToolCallSeconds": 90
}
When the LLM selects a tool (e.g. search_properties), it passes arguments like:
{
"tool": "search_properties",
"params": {
"location": "Austin, TX",
"max_price": 750000,
"min_beds": 3,
"property_type": "single_family"
}
}
Output Example
Each tool returns a structured JSON payload. Example response from search_properties:
{
"items": [
{
"address": "1234 Oak Ridge Dr, Austin, TX 78745",
"price": 695000,
"beds": 4,
"baths": 3,
"sqft": 2410,
"year_built": 2008,
"lot_size_sqft": 8500,
"days_on_market": 12,
"listing_url": "https://www.redfin.com/TX/Austin/1234-Oak-Ridge-Dr-78745/home/12345678",
"agent": {"name": "Jane Doe", "brokerage": "Compass"},
"photos": ["https://ssl.cdn-redfin.com/photo/.../IMG_0.jpg"],
"price_history": [
{"date": "2025-03-12", "event": "Listed", "price": 715000},
{"date": "2025-03-28", "event": "Price reduced", "price": 695000}
]
}
],
"next_page_token": "eyJvZmZzZXQiOjI1fQ"
}
Each items[] entry lands in the Apify dataset and is billed at $0.01 per item.
How This Compares vs Zillow API, HouseCanary & ATTOM (Alternatives)
| Alternative | Strength | Why teams pick this MCP instead |
|---|---|---|
| Zillow direct API | Brand recognition | Public Zillow API is deprecated; partner-only access; no AI agent integration |
| HouseCanary | Valuation models | $$$$ enterprise contracts, weeks of sales cycle, no MCP-native interface |
| CoreLogic | Property records breadth | Six-figure annual commitments; no AI/LLM-native output |
| ATTOM Data | Transactions + tax | Per-record fees stack fast; no agentic tool surface |
| Custom Redfin scraper | Free-ish | You maintain proxies, parsing, retries ā and still have no MCP layer for Claude/Cursor |
This MCP server is the only pay-per-result alternative that gives Claude, GPT-4, or any MCP-compliant agent direct, tool-call access to live U.S. property data ā no enterprise contract, no partner approval.
FAQ
**Q: Is this compatible with Claude Desktop and ChatGPT custom GPTs?**Yes ā any MCP-compliant client (Claude Desktop, Cursor, custom LangChain/Anthropic SDK agents, n8n) can call its tools.
**Q: Where does the data come from?**Publicly available real-estate listing portals. Listings, sold history, and market statistics are scraped fresh per call ā no stale cache.
**Q: What's the difference between this and your Redfin actor?**The Redfin actor is a classic scraper that returns a dataset. This MCP server exposes the same data as tools the LLM picks at reasoning time. For agentic workflows, you want the MCP server.
**Q: Are rate limits handled?**Yes ā proxy rotation, retry, and back-off are managed by Apify infrastructure. You don't tune anything.
**Q: How fresh is the data?**Pulled live each call. No 24-hour caches like HouseCanary's bulk feeds.
**Q: Output formats?**JSON streamed back to the LLM, plus the underlying dataset is available in CSV / Excel / JSONL.
**Q: Can I use it commercially?**Yes ā you own the output. Verify the target portal's ToS for downstream use of the listing content itself.
About NexGenData
NexGenData publishes 260+ buyer-intent actors covering SEC filings, YC alumni, real-estate, lead generation, competitive intelligence, stock fundamentals across 30+ exchanges, and a growing fleet of MCP servers for AI agents. All pay-per-result. Browse the full catalog at https://apify.com/nexgendata?fpr=2ayu9b
How NexGenData Pricing Works
Every NexGenData actor uses pay-per-event pricing ā you only pay for results that actually land in your dataset. No monthly minimum, no seat fees, no surprise overage bills.
- Actor Start: a single-event charge each time you spin the actor up (scaled to memory size)
- Result: charged per item written to the default dataset
- No charge for retries, internal proxy rotation, or failed sub-requests ā those are absorbed by the platform
If you only need the data once a quarter, you only pay once a quarter. If you scale to millions of records, the unit cost stays the same.
Apify Platform Bonus
New to Apify? Sign up with the NexGenData referral link ā you get free platform credits on signup (enough for several thousand free results) and you help fund the maintenance of this actor fleet.
Integration Surface
Every actor in the NexGenData catalog can be triggered from:
- Apify console ā point-and-click run
- Apify API ā REST + webhooks
- Apify Python / JS SDKs ā programmatic batch
- Zapier, Make.com, n8n ā official integrations
- MCP ā many actors are exposed as MCP tools for Claude / ChatGPT / Cursor agents
- Schedules ā built-in cron for daily / weekly / monthly runs
- Webhooks ā POST results to any HTTPS endpoint on dataset write
Support
NexGenData maintains 260+ Apify actors and ships updates regularly. Bug reports via the Apify console issues tab get a response within 24 hours. Roadmap requests are welcome ā high-demand features ship in the next version.
š Home: thenextgennexus.com š¦ Full catalog: apify.com/nexgendata
You might also like
š Redfin MCP ā AI Property Search & Data
nexgendata/redfin-mcp-server
š Redfin homes, real estate, property prices, housing market MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search Redfin listings + sold history + price estimates + neighborhood data via MCP. Free tier available.
Stephan Corbeil
15
Zillow MCP Server
afanasenko/zillow-mcp-server
MCP server exposing Zillow property + agent data as 3 tools: search by ZIP, search by URL, lookup by zpid. Connect Claude Desktop, Cursor, ChatGPT to /mcp endpoint. Pay-per-property pricing ā $0.08 on FREE, down to $0.05 on DIAMOND. Same data + pricing as the parent scraper.
Andrey Afanasenko
5
š± Social MCP ā AI Content & Media Search
nexgendata/social-content-mcp-server
š± Social media, Instagram, TikTok, Twitter content MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search posts + profiles + hashtags + engagement metrics across social platforms via MCP ā for social-listening AI workflows. Free tier available.
Stephan Corbeil
3
š¼ Jobs MCP ā AI Salary & Career Search
nexgendata/job-market-mcp-server
š¼ Jobs, job listings, Indeed, LinkedIn, salary data MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search job postings + salaries + company hiring trends + skills demand across major boards via MCP. Free tier available.
Stephan Corbeil
2
š¤ ā Review Intel MCP ā AI Review Analysis
nexgendata/review-intelligence-mcp-server
ā Reviews, ratings, product reviews, customer feedback MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Aggregate + analyze reviews across Amazon, Yelp, Trustpilot, G2, App Store via MCP ā for sentiment AI workflows. Free tier available.
Stephan Corbeil
2
š¬ YouTube MCP ā AI Video Search & Transcripts
nexgendata/youtube-media-mcp-server
š„ YouTube videos, channels, transcripts, comments MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search videos + channel stats + transcripts + comments + trending via MCP ā for video-content AI workflows. Free tier available.
Stephan Corbeil
1
š“ Reddit MCP ā AI Post & Comment Search
nexgendata/reddit-mcp-server
š¬ Reddit posts, comments, subreddits, trending content MCP for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Browse + search subreddit feeds + top posts + comment threads + user history via MCP ā for community-intel AI workflows. Free tier available.
Stephan Corbeil
2
š Google Maps MCP ā AI Lead Gen & Search
nexgendata/google-maps-mcp-server
š Google Maps, places, business listings, geocoding MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Search places + reviews + hours + lat/lng + nearby POIs via MCP ā purpose-built for location-aware AI workflows. Free tier available.
Stephan Corbeil
9
š¤ āæ Crypto MCP ā AI Token & Market Data
nexgendata/crypto-mcp-server
āæ Crypto, Bitcoin, Ethereum, prices, market cap MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Real-time crypto prices + market cap + volume + historicals + DeFi metrics across CoinGecko + CoinMarketCap via MCP. Free tier available.
Stephan Corbeil
2
š Yahoo Finance MCP ā AI Stock Analysis
nexgendata/yahoo-finance-mcp-server
š Stocks, finance, quotes, market data, Yahoo Finance MCP server for AI agents (Claude Desktop, Cursor, OpenAI Agents SDK, Vercel AI SDK). Real-time stock quotes + historicals + financials + earnings + analyst ratings via MCP. Free tier available.
Stephan Corbeil
6
Related articles
Best MCP servers for developers
Read more
Related Servers
Bright Data
sponsorDiscover, extract, and interact with the web - one interface powering automated access across the public internet.
Firecrawl
Extract web data with Firecrawl
Web Tools MCP Server
Give Claude web browsing powers - fetch webpages, extract data, discover sitemaps, summarize content
Conduit
Headless browser with SHA-256 hash-chained audit trails and Ed25519-signed proof bundles. MCP server for AI agents.
WebSearch
An advanced web search and content extraction tool powered by the Firecrawl API for web scraping and analysis.
LinkedIn Profile Scraper
Fetches LinkedIn profile information using the Fresh LinkedIn Profile Data API.
WebWatch MCP
Website change monitoring with URL watching, snapshot comparison, and intelligent content extraction for AI assistants
Oxylabs AI Studio
AI tools for web scraping, crawling, browser control, and web search via the Oxylabs AI Studio API.
Yahoo Finance
Provides comprehensive financial data from Yahoo Finance, including historical prices, company info, financial statements, and market news.
Chrome MCP Server
Exposes Chrome browser functionality to AI assistants for automation, content analysis, and semantic search via a Chrome extension.
Playwright Record MCP
Browser automation using Playwright with video recording. Enables LLMs to interact with web pages through structured accessibility snapshots.