Programmatic access to 100,334 closed comps, 5,700+ AI-scored commercial listings, and real-time deal scoring. Built for AI agents, developers, and data teams.
All tiers include access to our full comp dataset, deal listings, and market stats. Upgrade for higher rate limits, deal scoring, and bulk export.
Pass your API key via X-API-Key header. Full interactive docs at api.northeastdealintel.com/docs.
# Search CT industrial comps from last 180 days curl -G https://api.northeastdealintel.com/v1/agent/comps \ -H "X-API-Key: ndi_your_key_here" \ --data-urlencode "state=CT" \ --data-urlencode "property_type=industrial" \ --data-urlencode "date_from=2024-09-01" \ --data-urlencode "min_cap_rate=6.5" \ --data-urlencode "limit=100" # Response { "data": [ { "address": "215 Maxim Rd, Windsor, CT", "sale_price": 3200000, "price_per_sf": 68.50, "implied_cap_rate": 7.8, "sale_date": "2024-11-14", "property_type": "industrial" } ], "total": 847 }
# Who owns 215 Maxim Rd, Windsor, CT? curl "https://api.northeastdealintel.com/v1/agent/owner-lookup?address=215+Maxim+Rd+Windsor+CT&state=CT" \ -H "X-API-Key: ndi_your_key_here" # Response { "address": "215 Maxim Rd, Windsor, CT", "found": true, "owner": "HARTFORD INDUSTRIAL PARTNERS LLC", "confidence": "HIGH", "last_sale_date": "2008-11-14", "last_sale_price": 1850000, "years_held": 17, "portfolio_count": 4, "aging_signal": "Strong — 15+ year hold, likely unlevered, high motivation potential", "data_source": "ct_opm_sales" }
# Score a deal against 100K+ closed comps curl -X POST https://api.northeastdealintel.com/v1/agent/score \ -H "X-API-Key: ndi_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "address": "215 Maxim Rd, Windsor, CT", "state": "CT", "property_type": "industrial", "asking_price": 3200000, "cap_rate": 7.8, "description": "3-tenant industrial, assumable debt at 4.2%" }' # Response { "score": 8.2, "interpretation": "Strong — good fit for investors", "distress_tier": "Moderate Opportunity", "green_flags": ["Cap rate above Hartford industrial avg", "Assumable debt below market rate"], "red_flags": [], "benchmark": { "submarket_avg_cap_rate": 7.3, "price_per_sf_avg": 74.2 }, "requests_remaining": 4850 }
# CT industrial stats, last 90 days curl "https://api.northeastdealintel.com/v1/agent/market-stats?state=CT&property_type=industrial&period=90d" \ -H "X-API-Key: ndi_your_key_here" # Response { "state": "CT", "property_type": "industrial", "transaction_count": 143, "avg_cap_rate": 7.31, "median_cap_rate": 7.25, "avg_price_per_sf": 76.40, "top_submarkets": [ { "submarket": "Hartford Metro", "count": 58, "avg_cap_rate": 7.3 }, { "submarket": "Central CT", "count": 34, "avg_cap_rate": 7.6 } ] }
# Top-scored NJ industrial deals curl "https://api.northeastdealintel.com/v1/deals?state=NJ&property_type=industrial&min_score=7&limit=50" \ -H "X-API-Key: ndi_your_key_here" # Response { "data": [ { "address": "400 Raritan Center Pkwy, Edison, NJ", "asking_price": 4750000, "cap_rate": 6.4, "deal_score": 7.6, "green_flags": ["NNN lease structure", "Credit tenant"], "is_1031": 1 } ], "total": 312 }
curl https://api.northeastdealintel.com/v1/agent/usage \ -H "X-API-Key: ndi_your_key_here" # Response { "tier": "agent_pro", "requests_today": 142, "daily_limit": 5000, "requests_remaining": 4858, "reset_at": "2026-03-29T00:00:00Z", "total_requests_all_time": 1842 }
Self-serve signup. Keys provisioned automatically for agent tier subscribers.
X-API-Key header. Explore interactive docs at api.northeastdealintel.com/docs.The NDI MCP server connects your LLM to 14,000+ AI-scored deals and 100,000+ closed comps. Ask natural-language questions, run 1031 searches, and score deals — all from inside your AI client.
| Tool | What it does | Tier |
|---|---|---|
| search_deals | Filter 14K+ active listings by state, type, score, price, cap rate | Any |
| get_deal | Full detail + scoring breakdown + sell signal for one listing | Any |
| search_comps | 100K+ closed transactions — benchmark price/SF and cap rates | Starter+ |
| score_deal | Submit any deal for AI scoring against our comp database | Pro+ |
| find_1031_candidates | Filtered search for exchange-ready NNN and income deals | Any |
| get_sell_signal | Sell probability: motivated seller detection from DOM + aging data | Starter+ |
| get_market_benchmarks | Cap rate + PSF benchmarks by state and property type | Any |
| get_market_summary | State-level overview: deal count, avg score, top submarkets | Any |
# 1. Install
pip install mcp httpx
# 2. Download the server
curl -O https://northeastdealintel.com/mcp/ndi_mcp_server.py
# 3. Add to ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"northeast-deal-intel": {
"command": "python3",
"args": ["/path/to/ndi_mcp_server.py"],
"env": { "NDI_API_KEY": "your_key_here" }
}
}
}
# .cursor/mcp.json (Cursor) or ~/.continue/config.json (Continue)
{
"mcpServers": {
"ndi": {
"command": "python3",
"args": ["/path/to/ndi_mcp_server.py"],
"env": { "NDI_API_KEY": "your_key_here" }
}
}
}