loading…
Search for a command to run...
loading…
Property intelligence API for US real estate. Returns 16+ data points for any US address: noise levels, wetlands, slope, natural light, powerline proximity, cri
Property 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.
A remote Model Context Protocol (MCP) server that provides comprehensive US property intelligence data. Query any US address and get 16+ data points back instantly.
get_property_infoReturns comprehensive property data for a given US address:
Input:
{
"address": "123 Main St, Seattle, WA 98101"
}
Usage metadata is appended to each response:
{
"_usage": {
"get_property_info_calls_this_month": 3,
"free_calls_remaining": 7,
"free_tier_limit": 10,
"note": "Free tier: 7 of 10 free call(s) remaining this month."
}
}
get_facingReturns the cardinal/intercardinal direction a property faces (N, S, E, W, NE, NW, SE, SW).
Input:
{
"address": "123 Main St, Seattle, WA 98101"
}
Response:
{
"facing": "Northwest",
"address": "123 Main St, Seattle, WA 98101"
}
Sign up at propertyscoop.us/APIAccess to get your API key. The first 10 calls each month are free.
Add to your MCP configuration:
{
"mcpServers": {
"propertyscoop": {
"type": "streamable-http",
"url": "https://mcp.propertyscoop.us",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Use the remote server URL https://mcp.propertyscoop.us with your API key in the X-API-Key header.
| Tier | Calls/Month | Price |
|---|---|---|
| Free | First 10 | $0.00 |
| Pay-as-you-go | 11+ | $0.37/call |
Volume discounts available for high-usage customers. Manage billing at propertyscoop.us/APIAccess.
| Limit | Value |
|---|---|
| Burst | 100 concurrent requests |
| Sustained rate | 50 requests/sec |
| Daily quota | 10,000 requests |
Exceeding these limits returns HTTP 429 Too Many Requests. Limits are per API key. Contact us if you need higher limits.
The server uses standard JSON-RPC 2.0 error codes:
| Code | Meaning | Description |
|---|---|---|
| -32600 | Invalid Request | Malformed JSON-RPC request |
| -32601 | Method Not Found | Unknown MCP method |
| -32602 | Invalid Params | Missing or invalid parameters (e.g., empty address, address exceeds 500 characters) |
| -32603 | Internal Error | Server-side failure |
Example error response:
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32602,
"message": "Address is required"
}
}
| Symptom | Cause | Fix |
|---|---|---|
API key validation failed |
Invalid or deactivated key | Verify your key at propertyscoop.us/APIAccess |
429 Too Many Requests |
Rate limit exceeded | Reduce request frequency or contact us for higher limits |
Address is required |
Empty address parameter | Provide a complete US street address |
| No response / timeout | Network issue | Verify connectivity to https://mcp.propertyscoop.us |
Proprietary. See propertyscoop.us for terms of service.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"propertyscoop-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.