NYC Property Data MCP Server
Provides Claude with access to NYC public property data including property details, sales history, comparable sales, tax benefits, and rent stabilization analysis using natural language.
README
NYC Property Data MCP Server
A Model Context Protocol (MCP) server that provides Claude with access to NYC public property data. Query property details, sales history, comparable sales, tax benefits, and rent stabilization analysis using natural language.
No API keys required - all data sources are free and public.
Features
- 🏢 Property Lookup - Get detailed property info including owner, units, year built, zoning, and assessed values
- 💰 Sales Search - Find recent property sales with price per unit and price per sqft calculations
- 📊 Comparable Sales - Find similar properties for valuation analysis with implied value estimates
- 🏛️ Tax Benefits - Look up 421a, J-51, ICAP, STAR and other exemptions/abatements
- 🏠 Rent Stabilization Analysis - Automatic analysis of likely rent-stabilized units based on year built, unit count, and tax benefits
Data Sources
| Dataset | Source | Description |
|---|---|---|
| PLUTO | NYC Open Data | Property tax lot data - owner, units, zoning, assessments |
| Rolling Sales | NYC Open Data | Last 12 months of property sales |
| Property Exemptions | NYC Open Data | Tax exemptions by property |
| Property Abatements | NYC Open Data | Tax abatements (421a, J-51, etc.) |
Installation
Prerequisites
- Node.js 18+
- Claude Desktop app
Install from npm
npm install -g cre-property-mcp
Or clone and build locally
git clone https://github.com/deverseli800/cre-public-data-mcp.git
cd cre-public-data-mcp
npm install
npm run build
Configuration
Claude Desktop Setup
Edit the Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
If installed globally via npm:
{
"mcpServers": {
"property": {
"command": "property-mcp"
}
}
}
If running from local build:
{
"mcpServers": {
"property": {
"command": "node",
"args": ["/path/to/property-mcp/dist/index.js"]
}
}
}
Zero-install with npx:
{
"mcpServers": {
"property": {
"command": "npx",
"args": ["-y", "cre-property-mcp"]
}
}
}
After editing, quit Claude Desktop completely (Cmd+Q on macOS) and reopen.
Running Locally
Development
# Install dependencies
npm install
# Build TypeScript
npm run build
# The server runs via stdio (used by Claude Desktop)
# For testing, you can run directly:
node dist/index.js
Viewing Logs
The server logs to stderr, which Claude Desktop captures:
# macOS
tail -f ~/Library/Logs/Claude/mcp-server-property.log
# Or check Claude Desktop's developer console
Tools Reference
get_property
Get detailed property information by address.
Parameters:
city(required):"nyc"address(required): Street addressborough: NYC borough (manhattan,bronx,brooklyn,queens,staten_island)
Example:
"Look up 522 East 5th Street Manhattan"
Returns:
- Address, BBL, coordinates
- Owner name
- Units (residential and total)
- Year built, building class, zoning
- Assessed values (land, total, exempt)
- ZOLA map link
- Rent stabilization analysis
search_sales
Search for recent property sales with filters.
Parameters:
city(required):"nyc"borough: NYC boroughneighborhood: e.g.,"EAST VILLAGE","HARLEM"min_price/max_price: Price rangemin_units/max_units: Unit count rangebuilding_class:"C"(walk-up),"D"(elevator), etc.date_from/date_to: Date range (YYYY-MM-DD)whole_buildings_only: Exclude unit sales (default: true)limit: Max results (default: 10, max: 50)
Example:
"Find 5 recent elevator building sales over $5M in the East Village"
Returns:
- Sale price, date, address
- Units, sqft, year built
- price_per_unit and price_per_sqft calculations
- Owner, zoning
- ZOLA map link
search_comps
Find comparable sales for valuation analysis.
Parameters:
city(required):"nyc"address(required): Subject property addressborough(required): Subject property boroughlimit: Number of comps (default: 10)building_class: Override auto-detected classinclude_adjacent_neighborhoods: Include nearby areas (default: true)
Example:
"Find comparable sales for 522 East 5th Street Manhattan"
Returns:
- Subject property details
- Ranked comparable sales with similarity scores
- Average price per unit and price per sqft
- Implied values for subject property
get_sale_history
Get all recorded sales for a specific property.
Parameters:
city(required):"nyc"address(required): Street addressborough: NYC borough
Example:
"What's the sale history for 100 Gold Street Manhattan?"
search_properties
Search for properties (not sales) matching criteria.
Parameters:
city(required):"nyc"borough: NYC boroughmin_units/max_units: Unit count rangebuilding_class: Building typezoning: Zoning district (e.g.,"R7","C6")min_year_built/max_year_built: Year rangelimit: Max results
Example:
"Find walk-up buildings with 10+ units in Brooklyn built before 1940"
get_tax_benefits
Look up tax exemptions and abatements for a property.
Parameters:
city(required):"nyc"address: Street addressborough: NYC borough- Or:
borough_code,block,lot(direct BBL lookup)
Example:
"What tax benefits does 522 East 5th Street Manhattan have?"
Returns:
- All exemptions with codes and values
- All abatements with amounts and dates
- Flags:
has_421a,has_j51,has_icap,has_star - Human-readable summary
Rent Stabilization Analysis
Every property lookup includes a rent_info object with stabilization analysis:
{
"rent_info": {
"likely_stabilized": true,
"stabilization_reasons": [
"Pre-1974 building (1900) with 10 units",
"Receives J-51 tax abatement"
],
"confidence": "high",
"notes": [
"Individual units may be deregulated through high-rent vacancy",
"Verify with DHCR for definitive unit counts"
]
}
}
Stabilization Rules Applied:
- Buildings with 6+ units built before January 1, 1974
- Buildings receiving 421a tax exemption
- Buildings receiving J-51 tax abatement
- NYCHA buildings excluded (federal rules apply)
- Condo/co-op buildings noted separately
Example Queries
"Look up the property at 100 Gold Street in Manhattan"
"Find 10 recent multifamily sales in Williamsburg over $2M"
"What's the sale history for 123 E 7th Street Manhattan?"
"Find comparable sales for 522 East 5th Street Manhattan"
"Does 200 East 10th Street Manhattan have any tax abatements?"
"Search for elevator buildings with 20+ units in Harlem"
"Find walk-up buildings in the East Village built before 1920"
Building Classes
| Code | Description |
|---|---|
| A | One-family dwellings |
| B | Two-family dwellings |
| C | Walk-up apartments |
| D | Elevator apartments |
| R | Condominiums |
| S | Residences - multiple use |
Limitations
- NYC Rolling Sales only contains the last 12 months of sales
- Rent stabilization analysis is an estimate - verify with DHCR for official status
- Tax benefits data may lag behind current status
Troubleshooting
"Property not found"
- Check address format (e.g., "522 East 5th Street" not "522 E 5th St")
- Verify borough is correct
- Try without apartment/unit numbers
"No sales found"
- Expand date range
- Try broader neighborhood search
- Check if building class filter is too restrictive
Server not connecting
- Quit Claude Desktop completely (Cmd+Q) and reopen
- Check config file JSON syntax
- Verify node path in config
View logs
tail -f ~/Library/Logs/Claude/mcp-server-property.log
Contributing
Contributions welcome! Areas of interest:
- Philadelphia data source implementation
- Additional NYC data sources (ACRIS, HPD violations)
- Performance optimizations
- Additional analysis tools
License
MIT
Acknowledgments
Data provided by:
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.