npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@striderlabs/mcp-trulia

v0.1.0

Published

MCP server for Trulia - let AI agents search homes, rentals, property details, neighborhood info, and real estate market data

Readme

@striderlabs/mcp-trulia

MCP server for Trulia — let AI agents search homes for sale, find rentals, explore property details, analyze neighborhoods, track market trends, and more.

Built on Trulia and Zillow data (Trulia is owned by Zillow Group).

Features

  • Home Search — Search homes for sale by location, price, beds, baths, sqft, and property type
  • Rental Search — Find rentals with price, bedroom, and pet-friendly filters
  • Property Details — Full details including photos, price history, Zestimate, and tax history
  • Neighborhood Info — Walk/transit/bike scores, schools, demographics, and median values
  • Market Trends — Median prices, days on market, price/sqft, and inventory by city
  • Mortgage Calculator — Monthly payments, total cost, PMI, taxes, and insurance breakdown
  • Schedule Tours — Request in-person or virtual tours with agent contact
  • Contact Agents — Draft messages to listing agents with direct Trulia links
  • Save Properties — Persist favorite properties locally for later reference
  • Price Alerts — Set price threshold alerts stored locally

Installation

npm install -g @striderlabs/mcp-trulia

Or use directly with npx:

npx @striderlabs/mcp-trulia

MCP Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "trulia": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-trulia"]
    }
  }
}

Claude Code

claude mcp add trulia -- npx -y @striderlabs/mcp-trulia

Manual (global install)

{
  "mcpServers": {
    "trulia": {
      "command": "striderlabs-mcp-trulia"
    }
  }
}

Tools

| Tool | Description | |------|-------------| | trulia_search_homes | Search homes for sale by location, price, beds, baths, sqft, type | | trulia_search_rentals | Search rental listings with optional pet-friendly filter | | trulia_property_details | Full property info: photos, price history, Zestimate, taxes | | trulia_neighborhood_info | Walk scores, schools, demographics, median values | | trulia_market_trends | Market stats: median prices, DOM, price/sqft, inventory | | trulia_mortgage_calculator | Monthly payment, total interest, PMI, taxes, insurance | | trulia_schedule_tour | Request an in-person or virtual tour | | trulia_contact_agent | Draft a message to the listing agent | | trulia_save_property | Save/remove properties to a local favorites list | | trulia_list_saved_properties | List all saved properties | | trulia_price_alert | Create/list/remove price threshold alerts (stored locally) |

Usage Examples

Search homes for sale

Find 3-bedroom homes in Austin TX under $600,000

Calls trulia_search_homes with location="Austin, TX", max_price=600000, min_beds=3.

Find pet-friendly rentals

Show me pet-friendly 1-bed apartments in Brooklyn under $2500/month

Calls trulia_search_rentals with location="Brooklyn, NY", min_beds=1, max_beds=1, max_price=2500, pet_friendly=true.

Get property details

Get full details for Zillow property 2087562661

Calls trulia_property_details with zpid_or_url="2087562661".

Calculate mortgage

What would my monthly payment be on a $550,000 home with 10% down at 6.75% for 30 years?

Calls trulia_mortgage_calculator with home_price=550000, down_payment_percent=10, interest_rate=6.75, loan_term_years=30.

Neighborhood overview

Tell me about the Silver Lake neighborhood in Los Angeles

Calls trulia_neighborhood_info with location="Silver Lake, Los Angeles, CA".

Market trends

What are the current real estate market trends in Seattle, WA?

Calls trulia_market_trends with location="Seattle, WA".

Schedule a tour

Schedule an in-person tour for 123 Main St, Austin TX on March 20 at 2pm. My name is Jane Smith, email [email protected].

Calls trulia_schedule_tour with the provided details. Returns a confirmation and direct Trulia link.

Save a property

Save property 2087562661 at 123 Main St, Austin TX listed at $450,000

Calls trulia_save_property. Saved locally at ~/.strider/trulia/data.json.

Price alert

Alert me when 123 Main St (zpid 2087562661) drops below $420,000

Calls trulia_price_alert with action="create", direction="below", target_price=420000.

Local Data Storage

Saved properties and price alerts are stored locally at:

~/.strider/trulia/data.json

No account or API key is required.

Technical Details

  • Built with TypeScript and the @modelcontextprotocol/sdk
  • Uses Zillow's public search endpoints (same data powering Trulia)
  • Bundled with esbuild for fast startup
  • Communicates via stdio (MCP standard transport)

License

MIT — Strider Labs