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

homebase-mcp

v1.0.4

Published

MCP server for US real estate analysis — school district lookup, PA earned income tax rates, and affordability calculator

Readme

homebase-mcp

MCP server for US real estate analysis. Get accurate school district lookups, Pennsylvania EIT tax rates, and affordability calculations — all from your AI assistant.

Why this exists

School district accuracy is broken. Every real estate site maps addresses to school districts by zip code. But zip codes don't align with school district boundaries. 617 School Rd in Wind Gap has a Nazareth-area zip code (18064) — but it's actually in the Pen Argyl School District. This tool gets it right using Census Bureau boundary data.

Tools

school_district

Look up the actual school district for any US address using Census Bureau TIGER/Line boundary polygons. Works nationwide.

school_district({ address: "5780 Sullivan Trail, Nazareth, PA 18064" })
→ Pen Argyl Area School District (NOT Nazareth, despite the zip code)

eit_rate

Look up Pennsylvania Earned Income Tax rates by municipality, county, or school district. Covers all 67 counties and 2,600+ municipalities. Data source: PA DCED Act 32.

eit_rate({ municipality: "Plainfield", county: "Northampton" })
→ Total: 1.6% (Municipal: 0.75%, School: 0.85%)

affordability

Calculate monthly PITI payment, DTI ratios, PMI, and get a buy/stretch/risky verdict.

affordability({ homePrice: 425000, annualIncome: 150000, interestRate: 6.5, downPaymentPercent: 20 })
→ $2,698/mo | DTI: 21.6% | COMFORTABLE

full_analysis

Run all three tools in one call. Provide an address and financial details, get school district + EIT rates + affordability analysis combined.

Install

Claude Desktop

Add to claude_desktop_config.json:

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

Cline / VS Code

Add to your MCP settings:

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

From source

npm install homebase-mcp
npm run build
node dist/index.js

Data Sources

| Data | Source | Cost | Coverage | |------|--------|------|----------| | School districts | US Census Bureau Geocoder | Free | All 50 states | | EIT rates | PA DCED Act 32 | Free | Pennsylvania | | Affordability | Calculated | Free | Universal |

How school district lookup works

Most tools use zip codes to determine school districts. This is wrong — zip codes are mail delivery routes, not political boundaries. Two houses on the same street with the same zip can be in different school districts.

homebase-mcp uses the Census Bureau's geocoder, which maps addresses to their exact coordinates and then checks which school district boundary polygon contains that point. This is the same data the government uses to determine school enrollment.

Fallback strategy: If the Census Bureau can't forward-geocode an address (common for rural properties), we geocode via OpenStreetMap/Nominatim first, then reverse-geocode the coordinates through Census to get the school district.

Roadmap

  • [ ] School ratings integration (GreatSchools / Niche)
  • [ ] Property data via API (price, beds, baths, sqft)
  • [ ] Tax assessment lookup
  • [ ] Comparable sales
  • [ ] Additional state EIT/local tax data (Ohio, Maryland, Indiana)
  • [ ] Hosted SSE version (no local install needed)

License

MIT

Author

jazib