DoorProfit Crime & Neighborhood Data
DoorProfit MCP Server
Official hosted MCP server for the DoorProfit API — US crime, safety, and neighborhood data for any address, inside Claude, ChatGPT, Cursor, and any MCP-capable client.
https://api.doorprofit.com/mcpAsk your AI assistant "Is 500 Adams St in Tulsa safe?" and it answers with real data: a letter-grade safety score, recent incidents within 1,000 ft, neighborhood demographics, income, rent, home values, and more.
Tools
Tool | Description | Quota |
| Safety score (A+ to F), crime breakdown vs national average, recent incidents within 1,000 ft | 1 call |
| Demographics, income, home values, rent, cost of living, weather & disaster risk | 1 call |
| Registered offenders near a location (≤3 mi) or by name | 1 call |
| Your plan, usage, and remaining quota | Free |
Related MCP server: PropertyScoop MCP Server
Connect
Option 1 — OAuth (easiest)
Add https://api.doorprofit.com/mcp as a remote MCP server / custom
connector in your client. You'll be prompted to sign in to your DoorProfit
account and approve access. No keys to copy.
Option 2 — API key
Get a free key at api.doorprofit.com/signup, then configure:
{
"mcpServers": {
"doorprofit": {
"url": "https://api.doorprofit.com/mcp",
"headers": {
"Authorization": "Bearer dp_your_api_key"
}
}
}
}Clients that only accept a URL can use
https://api.doorprofit.com/mcp?key=dp_your_api_key instead.
Option 3 — stdio bridge
For clients that only speak stdio, this repository contains a small bridge that exposes the hosted server as a local process. It requires Node 18+.
{
"mcpServers": {
"doorprofit": {
"command": "npx",
"args": ["-y", "github:shawndoor/doorprofit-mcp"],
"env": {
"DOORPROFIT_API_KEY": "dp_your_api_key"
}
}
}
}Or with Docker:
docker build -t doorprofit-mcp .
docker run -i --rm -e DOORPROFIT_API_KEY=dp_your_api_key doorprofit-mcpThe bridge forwards every tool call to https://api.doorprofit.com/mcp and
pulls its tool definitions from the same place, falling back to the snapshot
in src/tools.json when the API is unreachable. Set DOORPROFIT_MCP_URL to
point it somewhere else. Run npm run sync-tools to refresh the snapshot
after the hosted tool definitions change.
Try it free
The test address 500 Main St, Dallas, TX 75202 returns real data and
never consumes quota — perfect for kicking the tires.
Technical details
Transport: Streamable HTTP (stateless)
Auth: OAuth 2.1 (authorization code + PKCE, dynamic client registration) or API key
Coverage: United States addresses (street address or lat/lng)
Quotas: tool calls are metered against your DoorProfit plan; free tier available, paid plans raise limits
Links
Support: support@doorprofit.com
This repository contains the documentation and the open-source stdio bridge
for the hosted server. The data pipeline behind api.doorprofit.com is not
open source.
Maintenance
Related MCP Servers
- Alicense-qualityCmaintenanceSubmarket-level US residential rental intelligence for AI agents. Search, compare, rank, and analyze rent data, trends, vacancy, affordability, and days on market across 1,000+ named submarkets in the 20+ largest US metros. ZIP-level and metro-level queries included. Always current, always expanding. Free tier available.Last updated1MIT
- Flicense-qualityDmaintenanceProperty intelligence API for US real estate. Returns 16+ data points for any US address: noise levels, wetlands, slope, natural light, powerline proximity, crime rates, property facing direction, zoning, public record, radon risk, natural hazards (earthquake, flood, wildfire), neighborhood demographics, falling tree risk, RF/cell tower exposure, and nearby school.Last updated
- Flicense-qualityCmaintenanceEnables location intelligence for US ZIP codes, allowing users to search, profile, and compare ZIP codes across various domains like crime, income, schools, and more.Last updated
- AlicenseAqualityDmaintenanceProvides US real estate data including housing stats, demographics, nearby amenities, area comparisons, cost-of-living analysis, and neighborhood search via free public APIs without any API keys.Last updated6MIT
Related MCP Connectors
U.S. real-estate data: property records, AVM value + rent estimates, sale/rental listings.
US weather & geo for AI agents: forecasts, alerts, earthquakes, elevation, geocoding. No keys.
Property Records MCP — address-level US property records (sales history,
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/shawndoor/doorprofit-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server