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

@borough/mcp

v1.2.1

Published

MCP server for Borough NYC Real Estate API — search rentals, sales, property details, and building data across all five NYC boroughs

Readme

@borough/mcp

Remote MCP bridge package for Borough, a read-only NYC real estate connector for Claude, ChatGPT, Cursor, VS Code, and other MCP-compatible clients.

Borough MCP gives AI tools authenticated access to:

  • rental and sales search across the five boroughs
  • area and neighborhood discovery
  • market snapshots and trends
  • property and building detail tools for paid tiers
  • compact, chat-friendly responses designed for remote connector clients

Preferred Connection Model

For hosted MCP clients, use Borough's remote MCP endpoint:

https://borough.qwady.app/mcp

OAuth-capable clients should prefer the built-in Borough OAuth flow. That is the primary connector path for Claude and other hosted remote MCP clients.

Docs:

Remote Connector URL

https://borough.qwady.app/mcp

Discovery metadata:

https://borough.qwady.app/.well-known/mcp/server.json

Tool Access By Tier

Authenticated Free

  • search_rentals
  • search_sales
  • list_areas
  • get_market_snapshot
  • get_market_trends
  • compare_neighborhoods

Starter And Above

  • get_property
  • get_property_by_url
  • get_building
  • get_building_listings

All Borough MCP tools are read-only.

The search and market tools accept either area IDs or neighborhood names. Search tools also support compact amenity-aware filtering, including DISHWASHER and WASHER_DRYER.

Claude And Remote Clients

If your MCP client supports remote connectors and OAuth, use the hosted endpoint directly and complete the Borough sign-in flow when prompted.

For Claude-specific steps:

Direct Bearer-Token Usage

For MCP clients that do not support Borough's OAuth flow, use a Borough API key in the Authorization header:

Authorization: Bearer BOROUGH-<your_key>

Examples:

Cursor

{
  "mcpServers": {
    "borough": {
      "url": "https://borough.qwady.app/mcp",
      "headers": {
        "Authorization": "Bearer BOROUGH-<your_key>"
      }
    }
  }
}

VS Code

{
  "servers": {
    "borough": {
      "type": "http",
      "url": "https://borough.qwady.app/mcp",
      "headers": {
        "Authorization": "Bearer BOROUGH-<your_key>"
      }
    }
  }
}

npx Bridge Usage

This package is mainly useful when you want to bridge the hosted Borough MCP endpoint into a stdio-only client.

BOROUGH_API_KEY=BOROUGH-<your_key> npx @borough/mcp

BOROUGH_API_KEY is required for the direct stdio bridge path.

Example Questions

Ask your AI client:

  • "Find me 2-bedroom apartments in Williamsburg under $4,000"
  • "Find studios in Chelsea with dishwasher and in-unit washer/dryer"
  • "Compare rents between Astoria, Park Slope, and the East Village"
  • "Show me current market stats for Long Island City"
  • "Get details for property 4961849"
  • "Which buildings in Chelsea have the most active listings?"

Get Access

Support

For support, contact [email protected].