NYC Property Data MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NYC Property Data MCP ServerFind recent sales in East Village under $10M"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: RentCast MCP Server
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-mcpOr clone and build locally
git clone https://github.com/deverseli800/cre-public-data-mcp.git
cd cre-public-data-mcp
npm install
npm run buildConfiguration
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.jsViewing 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 consoleTools 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 boroughOr:
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_starHuman-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.logContributing
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:
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deverseli800/cre-public-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server