← Back to Skills Marketplace
chrischall

Tmp.HIr8hBnFpZ

by chrischall · GitHub ↗ · v0.4.0 · MIT-0
cross-platform ✓ Security Clean
64
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install redfin-mcp
Description
Look up real-estate listings, property details, market reports, and your saved homes/searches on Redfin via MCP. Triggers on phrases like "find homes on redf...
README (SKILL.md)

redfin-mcp

MCP server for Redfin — natural-language access to listings, property records, market reports, and your saved homes/searches. Routes through your signed-in redfin.com tab via the fetchproxy browser extension, so AWS WAF / DataDome see a real browser session instead of a Node process.

⚠️ Redfin does not publish a public consumer API. This server uses the same private /stingray/... endpoints the redfin.com web app calls, dispatched through your own signed-in browser tab via the fetchproxy extension. Use at your own discretion.

Setup

1. Install redfin-mcp

.mcp.json (project) or ~/.claude/mcp.json (global):

{
  "mcpServers": {
    "redfin": {
      "command": "npx",
      "args": ["-y", "redfin-mcp"]
    }
  }
}

2. Install the fetchproxy extension (one-time, shared across all fetchproxy-based MCPs)

git clone https://github.com/chrischall/fetchproxy
cd fetchproxy
npm ci
npm --workspace=@fetchproxy/extension-chrome run build

Then in Chrome: chrome://extensions → Developer mode → Load unpacked → pick packages/extension-chrome/dist/.

3. Open redfin.com and sign in.

That's it. No API keys, no env vars.

Tools

Public data

  • redfin_search_properties — Search by location + filters (price, beds/baths min, home type). Resolves the location via Redfin's autocomplete then queries the /stingray/api/gis endpoint. Returns matching listings with price, beds/baths, sqft, year built, address, and the Redfin home URL.
  • redfin_get_property — Full property record by url (Redfin homedetails URL or path) or property_id + listing_id. Two-round-trip API: initialInfo resolves the URL to IDs, then aboveTheFold fetches the data. Returns address, beds/baths, sqft, year built, price, status, days on market, primary photo.
  • redfin_get_market_report — Median sale/list prices, price per sqft, days on market, year-over-year change, homes sold/on market for a Redfin region. Provide either location (free-text) or region_id + region_type. All metrics returned as formatted strings (e.g. "$870K", "+2.4%").
  • redfin_calculate_mortgage — Local PITI calculator. No network call. Provide home price, interest rate, optional down payment / taxes / insurance / HOA / PMI; returns a full monthly breakdown.

Signed-in user data (the unique value vs. paid scrapers)

  • redfin_get_saved_homes — Your favorited homes, flattened across all collections. Returns address, price, beds/baths, status.
  • redfin_get_saved_searches — Your saved searches with region URLs and display text.

Trigger examples

  • "Find me 2-bedroom condos under $1.5M in Brooklyn on Redfin" → redfin_search_properties
  • "What does Redfin say about 42 Monroe St in Brooklyn?" → redfin_get_property
  • "Pull up my favorited homes on Redfin" → redfin_get_saved_homes
  • "What's new on my saved Redfin searches?" → redfin_get_saved_searches
  • "Brooklyn housing market trends on Redfin" → redfin_get_market_report
  • "Monthly payment on a $500k home, 20% down, 6.5% rate" → redfin_calculate_mortgage

Gotchas

  • Sign-in required for saved- tools.* If the user isn't signed into redfin.com in the bridged Chrome tab, those tools fail with SessionNotAuthenticatedError. Public tools work either way.
  • AWS WAF challenge. Redfin occasionally serves a WAF challenge to fresh sessions. Solving it in the Chrome tab once unblocks subsequent fetches.
  • No write surface yet. All tools are read-only. Saving a home / search / contact form are not implemented in v0.1.
  • for_rent / sold listing statuses map to entirely different Redfin URL paths (/apartments-for-rent/..., /recently-sold). v0.1 of redfin_search_properties supports for_sale only.
  • No equivalent to Zillow's Zestimate history tool. Redfin's Redfin Estimate is exposed as a current scalar inside redfin_get_property; there's no historical-series endpoint yet.
Usage Guidance
Install only if you are comfortable letting an MCP workflow use your signed-in Redfin browser session to read saved homes and saved searches. Review the external npm package and fetchproxy extension source before installing, and use saved-data tools only when you intend to share that account-linked activity with your agent.
Capability Assessment
Purpose & Capability
The skill coherently describes read-only Redfin listing search, property lookup, market reports, mortgage calculation, and saved-home/search retrieval via MCP.
Instruction Scope
The trigger language is broad for Redfin-related requests, including saved Redfin activity, which could cause the skill to engage more often than necessary.
Install Mechanism
Setup requires running the external redfin-mcp package with npx and manually installing a fetchproxy browser extension from GitHub; this is disclosed but the executable code is outside the skill artifact.
Credentials
Using a signed-in Redfin tab and private Redfin web endpoints is proportionate to saved-data lookup, but it exposes sensitive real-estate interests and locations to the MCP workflow.
Persistence & Privilege
The artifact describes read-only tools and no persistence, background worker, deletion, posting, or account-mutation capability.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install redfin-mcp
  3. After installation, invoke the skill by name or use /redfin-mcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.4.0
redfin-mcp 0.4.0 — Add Redfin real-estate search and user activity lookup via MCP - Search Redfin for real-estate listings, property records, and market reports using natural-language requests. - Retrieve your saved homes and searches by bridging through your signed-in Redfin.com session (via fetchproxy extension). - Returns details like price, beds/baths, square footage, year built, address, and status for each listing. - Includes a local mortgage calculator with payment breakdowns. - No API keys required; routes requests through your own browser tab for compatibility. - Read-only access to Redfin data; does not support saving homes or searches yet.
Metadata
Slug redfin-mcp
Version 0.4.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Tmp.HIr8hBnFpZ?

Look up real-estate listings, property details, market reports, and your saved homes/searches on Redfin via MCP. Triggers on phrases like "find homes on redf... It is an AI Agent Skill for Claude Code / OpenClaw, with 64 downloads so far.

How do I install Tmp.HIr8hBnFpZ?

Run "/install redfin-mcp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Tmp.HIr8hBnFpZ free?

Yes, Tmp.HIr8hBnFpZ is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Tmp.HIr8hBnFpZ support?

Tmp.HIr8hBnFpZ is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Tmp.HIr8hBnFpZ?

It is built and maintained by chrischall (@chrischall); the current version is v0.4.0.

💬 Comments