@pullapi/redfin-scraper-mcp
v1.0.0
Published
Redfin MCP server — property search, sold homes & home value estimates. For Claude, Cursor & AI agents.
Maintainers
Readme
Redfin Scraper MCP Server
An MCP server that provides real-time Redfin data — search properties, view recently sold homes, and get home value estimates — for use with Claude, Cursor, and other MCP-compatible AI tools.
Features
- Search Properties — Search Redfin for properties by location with price, beds, and sort filters
- Get Sold Properties — Get recently sold properties in a location from Redfin
- Get Estimate — Get Redfin's home value estimate for a property
Tools
search_properties
Search Redfin for properties by location with price, beds, and sort filters
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| location | string | Yes | City, zip code, or neighborhood |
| num_homes | number | No | Number of results per page (default: 20) |
| page | number | No | Page number (default: 1) |
| sort | string | No | Sort order (default: recommended) — one of: recommended, newest, most_recently_sold, lowest_price, highest_price, price_reduced |
| min_price | number | No | Minimum price filter |
| max_price | number | No | Maximum price filter |
| beds | number | No | Minimum number of bedrooms |
get_sold_properties
Get recently sold properties in a location from Redfin
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| location | string | Yes | City, zip code, or neighborhood |
| num_homes | number | No | Number of results per page (default: 20) |
| sold_within_days | number | No | Show properties sold within N days (default: 90) |
| page | number | No | Page number (default: 1) |
get_estimate
Get Redfin's home value estimate for a property
Parameters:
| Name | Type | Required | Description |
|------|------|----------|-------------|
| property_id | string | Yes | Redfin property ID |
Configuration
Get your API key from RapidAPI.
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"redfin": {
"command": "npx",
"args": ["-y", "@pullapi/redfin-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"redfin": {
"command": "npx",
"args": ["-y", "@pullapi/redfin-scraper-mcp"],
"env": {
"RAPIDAPI_KEY": "your-rapidapi-key"
}
}
}
}License
MIT
