Real Estate MCP Server

Recherche de propriétés et analyse du marché depuis Redfin avec des informations sur les quartiers.

Documentation

Real Estate MCP — Property Search & Details for AI Agents (nexgendata/real-estate-mcp-server) Actor

MCP server exposing US property search and full listing detail (Redfin-sourced) as agent tools. Connect Claude, Cursor, n8n or the OpenAI Agents SDK.

Pricing

from $50.00 / 1,000 property records

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows. In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours, and optionally produces a well-defined JSON output, datasets with results, or files in key-value store. In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server. Actors are written with capital "A".

How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects. You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready. The best way to integrate Actors is as follows.

  • AI agents and MCP clients — the Apify MCP server at https://mcp.apify.com (remote, streamable HTTP, OAuth on first use).
  • Agentic workflows and local Actor developmentAgent Skills with the Apify CLI: npm install -g apify-cli, then apify login.
  • JavaScript/TypeScript projects — the official JS/TS client: npm install apify-client.
  • Python projects — the official Python client: pip install apify-client.
  • Any other language — the REST API.

For usage examples, see the API section below.

For more details, see Apify documentation as Markdown index and Markdown full-text.

README

Real Estate MCP

A Model Context Protocol server that gives AI agents US residential real-estate data — property search and full listing detail, sourced from Redfin — as callable tools. For real-estate research, valuation and lead agents.

🛠 Tools (2)

  • get_property_details — Full detail for a specific property.
  • search_redfin_properties — Search Redfin property listings by location and filters.

🔌 Connect (Claude Desktop / Cursor / n8n / OpenAI Agents SDK)

Add this MCP server to your client config:

{
  "mcpServers": {
    "real-estate": {
      "url": "https://nexgendata--real-estate-mcp-server.apify.actor/mcp"
    }
  }
}

Sample agent prompt:

Search for 3-bed homes under $600k in Denver and pull full details on the top result.

Pricing: $0.05 per property record (Pay-Per-Event). Runs in Standby mode.


Related NexGenData actors

Use caseActor
Redfin listings, sold history, comps in flat JSONRedfin Real Estate Scraper
Redfin listings via MCP (agent tools)redfin-mcp-server
UK property listings from RightmoveRightmove UK Real Estate
Singapore HDB resale transactionsSG HDB Resale Prices
Singapore URA private-property transactionsSG URA Property Transactions
Denmark housing market via BoligaBoliga Denmark Real Estate
AI-native financial data for LLM agentsFinance MCP Server
Local-business + map data MCP for agentsGoogle Maps MCP Server
Multi-source travel & rental MCPTravel MCP Server

Home: thenextgennexus.com Full catalog: apify.com/nexgendata

Actor input Schema

debug (type: boolean):

Enable verbose logging in the MCP server stdout. Helpful when wiring a new AI client (Claude Desktop, Cursor, n8n) and you want to see every tool invocation. Leave off in production.

maxToolCallSeconds (type: integer):

Maximum time a single MCP tool invocation may run before the server aborts it and returns a timeout error to the AI client. Increase only if your agent issues unusually long-running property scrapes (e.g. fetching hundreds of comps in one shot).

Actor input object example

{
  "debug": false,
  "maxToolCallSeconds": 90
}

API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

JavaScript example

import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "debug": false,
    "maxToolCallSeconds": 90
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/real-estate-mcp-server").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

Python example

from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "debug": False,
    "maxToolCallSeconds": 90,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/real-estate-mcp-server").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

CLI example

echo '{
  "debug": false,
  "maxToolCallSeconds": 90
}' |
apify call nexgendata/real-estate-mcp-server --silent --output-dataset

MCP server setup

{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nexgendata/real-estate-mcp-server",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/LjGCyVAYO45XhjA7U/builds/t79lF43BWI2n8cNT9/openapi.json