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

scalogy-real-estate-deals-mcp

v1.0.1

Published

MCP server for Scalogy Real Estate Deals — pay-per-call graded US real-estate investment deals (flip/BRRRR/buy-&-hold) via x402 + USDC on Base.

Readme

Scalogy Real Estate Deals — MCP server

npm version CI License: MIT MCP

An MCP server that gives your AI agent vetted, daily-scored US residential real-estate investment deals — flip, BRRRR, and buy-&-hold — each graded STRONG/MODERATE/FAIR with an estimated ARV from a live comp set, gross spread, margin %, cap rate/cash flow, days-on-market and the source listing URL.

Every call is paid per request in USDC on Base via x402 — typically a few cents — using your own wallet. No signup, no API key, no subscription. Coverage: FL, GA, NC, SC, AL, MS (expanding).

Docs & live API: https://pages.scalogy.com/chris/x402/

How it works

The server wraps the find_graded_deals x402 endpoint. On each tool call it makes an HTTP request; the server answers 402 Payment Required with a price; this MCP server signs a USDC payment from your configured wallet and retries; you get the deals back. Settlement is gasless for you — the facilitator sponsors gas, so your wallet only needs USDC (no ETH).

Setup

  1. Fund a Base wallet with a few dollars of USDC on Base mainnet (no ETH needed). Export its private key. Use a dedicated low-balance wallet — this key is stored in your MCP client config.
  2. Add the server to your MCP client.

Claude Desktop — claude_desktop_config.json

{
  "mcpServers": {
    "scalogy-real-estate-deals": {
      "command": "npx",
      "args": ["-y", "scalogy-real-estate-deals-mcp"],
      "env": { "EVM_PRIVATE_KEY": "0xYOUR_FUNDED_BASE_WALLET_KEY" }
    }
  }
}

Cursor / other MCP clients — mcp.json

{
  "mcpServers": {
    "scalogy-real-estate-deals": {
      "command": "npx",
      "args": ["-y", "scalogy-real-estate-deals-mcp"],
      "env": { "EVM_PRIVATE_KEY": "0xYOUR_FUNDED_BASE_WALLET_KEY" }
    }
  }
}

Restart the client. Your agent now has a find_graded_deals tool.

Configuration

| Env var | Default | Notes | |---|---|---| | EVM_PRIVATE_KEY | — | Required to buy. A Base wallet funded with USDC. Without it the tool returns a setup message and spends nothing. | | RESOURCE_SERVER_URL | https://x402-scalogy-production.up.railway.app | The deal API. | | CLIENT_ID | Scalogy public feed id | Which feed to query. | | X402_NETWORK | eip155:8453 | Base mainnet. |

Pricing

Quoted per call from what it returns, capped at $20/call: base $0.02 + $0.15/STRONG + $0.06/MODERATE + $0.02/FAIR. A query that returns nothing costs only the base fee.

Tool: find_graded_deals

Filters (all optional): strategy (flip/brrrr/buy_hold), min_grade (STRONG/MODERATE/FAIR), state, zip, city, min_price, max_price, beds_min, baths_min, min_margin_pct, min_gross_spread, min_arv, min_dom, max_dom, min_confidence, limit.

Returns JSON { count, deals[] } where each deal has address, beds/baths/sqft/year_built, property_type, list_price, arv (+ p25/p75), gross_spread, gross_margin_pct, grade, dom, comp_count, a human-readable reason, the source URL, and an ARV confidence score.

Run without npm publish

If the package isn't on npm yet, clone this folder and point your client at it:

{ "command": "node", "args": ["/absolute/path/to/x402-mcp/index.mjs"],
  "env": { "EVM_PRIVATE_KEY": "0x..." } }

Data is informational, not investment advice. ARV is an automated comp-based estimate — verify before acting.