com.doorprofit/doorprofit
Official4 toolsDoorProfit Crime & Neighborhood Data
US crime scores, incidents, neighborhood demographics, rent data, and offender search by address.
Query US crime scores, incidents, demographics, rent data, and offender records by address.
Captured live from the server via tools/list.
get_crime_data
Get the crime safety score (A+ through F), crime breakdown vs national average, and recent crime incidents within 1000ft of a US address or coordinates. Use this to answer questions like "is this address/neighborhood safe?". Consumes 1 API call from the user's DoorProfit quota.
Parameters (3)
- addressstring
Full US street address, e.g. "500 Adams St, Tulsa, OK". Provide either address OR lat+lng.
- latnumber
Latitude (use together with lng, as an alternative to address).
- lngnumber
Longitude (use together with lat, as an alternative to address).
get_neighborhood_data
Get comprehensive neighborhood data for a US address or coordinates: demographics, median income, housing values, rent estimates, education, cost of living, weather, and natural disaster risk. Consumes 1 API call from the user's DoorProfit quota.
Parameters (3)
- addressstring
Full US street address, e.g. "500 Adams St, Tulsa, OK". Provide either address OR lat+lng.
- latnumber
Latitude (use together with lng, as an alternative to address).
- lngnumber
Longitude (use together with lat, as an alternative to address).
search_offenders
Search registered offenders near a US location (address or lat/lng, radius up to 3 miles) or by name (first_name/last_name/dob, optionally filtered by city/state/zipcode). Consumes 1 API call from the user's DoorProfit quota.
Parameters (12)
- addressstring
Full US street address, e.g. "500 Adams St, Tulsa, OK". Provide either address OR lat+lng.
- latnumber
Latitude (use together with lng, as an alternative to address).
- lngnumber
Longitude (use together with lat, as an alternative to address).
- radiusnumber
Search radius in miles for location searches (default 1, max 3).
- first_namestring
First name for name-based searches.
- last_namestring
Last name for name-based searches.
- dobstring
Date of birth, YYYY-MM-DD.
- citystring
City filter for name-based searches.
- statestring
Two-letter state code filter, e.g. "OK".
- zipcodestring
Zipcode filter for name-based searches.
- pageinteger
Page number (default 1).
- limitinteger
Results per page (default 50, max 100).
get_api_usage
Get the current plan, monthly/daily API call usage, remaining quota, and reset times for the configured DoorProfit API key. Free: does NOT consume quota. Call this when the user asks about their remaining calls or hits a quota error.
No parameters.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"doorprofit": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://api.doorprofit.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.