by brightdata
Intelligent Python system that extracts real estate property data as structured JSON using AI agents, Nebius Qwen LLM, and Bright Data MCP.
# Add to your Claude Code skills
git clone https://github.com/brightdata/real-estate-ai-agentGuides for using ai agents skills like real-estate-ai-agent.
Last scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T16:16:19.821Z",
"npmAuditRan": true,
"pipAuditRan": true
}real-estate-ai-agent is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by brightdata. Intelligent Python system that extracts real estate property data as structured JSON using AI agents, Nebius Qwen LLM, and Bright Data MCP. It has 145 GitHub stars.
Yes. real-estate-ai-agent passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/brightdata/real-estate-ai-agent" and add it to your Claude Code skills directory (see the Installation section above).
real-estate-ai-agent is primarily written in Python. It is open-source under brightdata on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh real-estate-ai-agent against similar tools.
No comments yet. Be the first to share your thoughts!
AI-Powered Solution for Real Estate Public Data Extraction
Real Estate AI Agent System is a Python-based solution that leverages AI agents and Bright Data's Model Context Protocol (MCP) server to extract, process, and deliver structured real estate property data from multiple sources.
Clone this repository
git clone https://github.com/brightdata-com/real-estate-ai-agents.git
cd real-estate-ai-agents
macOS/Linux
python3.9 -m venv venv
source venv/bin/activate
Windows
python3.9 -m venv venv
.\venv\Scripts\activate
pip install "crewai-tools[mcp]" crewai mcp python-dotenv pandas
Create a .env file in your project directory with the following:
BRIGHT_DATA_API_TOKEN="your_api_token_here"
WEB_UNLOCKER_ZONE="your_web_unlocker_zone"
BROWSER_ZONE="your_browser_zone"
NEBIUS_API_KEY="your_nebius_api_key"
To run the agent:
python real_estate_agents.py
If successful, the script will extract property data from a real estate listing and output result like:
{
"address": "123 Main Street, City, State 12345",
"price": "$450,000",
"bedrooms": 3,
"bathrooms": 2,
"square_feet": 1850,
"lot_size": "0.25 acres",
"year_built": 1995,
"property_type": "Single Family Home",
"listing_agent": "John Doe, ABC Realty",
"days_on_market": 45,
"mls_number": "MLS123456",
"description": "Beautiful home with updated kitchen...",
"image_urls": ["https://example.com/image1.jpg", "https://example.com/image2.jpg"],
"neighborhood": "Downtown Historic District"
}
.env file.