PropertyScoop MCP Server
PropertyScoop MCP 서버
포괄적인 미국 부동산 인텔리전스 데이터를 제공하는 원격 Model Context Protocol (MCP) 서버입니다. 미국 내 모든 주소를 조회하고 타겟팅된 부동산 데이터를 즉시 받아볼 수 있습니다.
도구
get_facing (실험적)
위성 이미지와 머신러닝을 통해 파생된 부동산 정면의 방위(방향)를 반환합니다. 일조량 평가, 태양광 패널 잠재력 또는 우세풍 노출을 평가하는 데 유용합니다. 북반구에서는 남향 부동산이 겨울철 햇빛을 더 많이 받습니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답:
{ "facing": "Southwest" }가능한 값: North, South, East, West, Northeast, Northwest, Southeast, Southwest
get_power_substation_location
부동산 반경 1마일 이내의 전기 변전소를 찾습니다. 고압 인프라와의 근접성이나 잠재적인 EMF 노출을 평가하는 데 유용합니다. 1마일 이내에 변전소가 없으면 count: 0과 빈 배열을 반환합니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답:
{
"powerSubstationLocationsNearby": [
{
"type": "Feature",
"geometry": { "type": "Point", "coordinates": [-122.2328941, 47.6192593] },
"properties": {
"name": "",
"operator": "Puget Sound Energy",
"substation_type": "distribution",
"voltage": "",
"city": "",
"state": "WA",
"distance_meters": 959.95,
"distance_miles": 0.6
}
}
],
"count": 1
}get_water_quality
주어진 주소에 서비스를 제공하는 공공 상수도 시스템의 식수 품질 및 EPA 규정 준수 이력을 검색합니다. 데이터는 EPA 식수 정보 시스템(SDWIS)에서 가져옵니다. 개인 우물을 사용하는 부동산은 EPA 상수도 시스템 기록이 없습니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답 필드 (drinking_water 하위에 모두 중첩됨):
system_name— 서비스 제공 수도 유틸리티 이름pwsid— EPA 공공 상수도 시스템 IDpopulation_served— 해당 시스템을 사용하는 인구 수grade— 전체 규정 준수 등급 (A–F)violations_3yr/health_violations_3yr/monitoring_violations_3yr— 3년간 위반 횟수violations[]— 상세 위반 기록 (있는 경우): 오염 물질, 유형, 날짜, 심각도source_water_type— 예: 지표수, 지하수primary_sources[]— 명명된 수원 시설
get_rf_exposure
기지국 및 방송 안테나를 포함하여 반경 2마일 이내의 FCC 허가 송신기로부터 발생하는 부동산의 무선 주파수(RF) 전자기 방사선 노출을 측정합니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답:
{
"rfExposureInMilliwatts": 0.42,
"emittersNearby": 3,
"searchDistanceInMiles": 2
}rfExposureInMilliwatts— 모든 인근 송신기에서 발생하는 총 RF 전력 밀도(mW)emittersNearby— 2마일 이내의 허가된 RF 송신기 수
get_noise_score
국가 교통 소음 모델을 사용하여 환경 소음 점수를 계산합니다. 소음 수준은 도로 교통, 철도, 항공 분야에 걸쳐 데시벨(dB) 단위로 보고됩니다. EPA 기준에 따라 65dB 이상의 값은 시끄러운 것으로 간주됩니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답:
{
"combinedNoise": 58.3,
"roadNoise": 57.1,
"railNoise": 42.0,
"aviationNoise": 35.5,
"mainSources": ["Road"]
}get_falling_tree_risk
인근 나무 밀도, 추정 나무 높이, 구조물과 나무 사이의 거리, 과거 폭풍 데이터(풍속 및 강수 강도)를 결합하여 나무가 쓰러져 부동산에 피해를 줄 위험을 평가합니다.
입력:
{ "address": "123 Main St, Seattle, WA 98101" }응답:
{
"risk_level": "Medium",
"property_risk_annual_low": 0.002995654057260544,
"property_risk_annual_high": 0.014891755791630046,
"max_wind_speed_kmh": 48.2,
"max_precipitation_24h_mm": 29.2
}risk_level—Low(낮음),Medium(보통),High(높음), 또는Very High(매우 높음)property_risk_annual_low— 나무가 부동산을 덮칠 연간 확률의 하한선property_risk_annual_high— 나무가 부동산을 덮칠 연간 확률의 상한선max_wind_speed_kmh— 부동산 인근에서 기록된 최대 풍속(km/h)max_precipitation_24h_mm— 부동산 인근에서 기록된 최대 24시간 강수량(mm)
Related MCP server: real-estate-data-mcp-server
설정
1. API 키 받기
propertyscoop.us/APIAccess에서 가입하여 API 키를 받으세요. 각 도구는 월 10회 호출까지 무료 티어를 제공합니다.
2. MCP 클라이언트 구성
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json에 추가하세요:
{
"mcpServers": {
"propertyscoop": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.propertyscoop.us/",
"--header",
"X-API-Key:your_api_key_here"
]
}
}
}Cursor / Windsurf
MCP 설정으로 이동하여 서버 URL https://mcp.propertyscoop.us를 추가하고 헤더 X-API-Key: your_api_key_here를 설정하세요.
Claude Code / 기타 스트리밍 HTTP 클라이언트
{
"mcpServers": {
"propertyscoop": {
"type": "streamable-http",
"url": "https://mcp.propertyscoop.us",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}가격
각 도구는 API Access 대시보드에서 개별적으로 활성화하거나 비활성화할 수 있습니다.
도구 | 볼륨 | 호출당 가격 |
| 1 – 2,000회 호출 | $0.02 |
2,001 – 5,000회 호출 | $0.015 | |
5,001회 이상 호출 | $0.01 | |
| 첫 10회/월 | 무료 |
11회 이상 호출 | $0.01 | |
| 첫 10회/월 | 무료 |
11회 이상 호출 | $0.01 | |
| 첫 10회/월 | 무료 |
11회 이상 호출 | $0.03 | |
| 첫 10회/월 | 무료 |
11회 이상 호출 | $0.01 | |
| 첫 10회/월 | 무료 |
11회 이상 호출 | $0.20 |
데이터를 성공적으로 검색한 tools/call 요청에 대해서만 요금이 청구됩니다. 프로토콜 메시지(tools/list, initialize)는 무료입니다.
속도 제한
제한 | 값 |
버스트 | 100 동시 요청 |
지속 속도 | 50 요청/초 |
일일 할당량 | 10,000 요청 |
이 제한을 초과하면 HTTP 429 Too Many Requests가 반환됩니다. 제한은 API 키별로 적용됩니다. 더 높은 제한이 필요하면 문의해 주세요.
오류 처리
서버는 표준 JSON-RPC 2.0 오류 코드를 사용합니다:
코드 | 의미 | 설명 |
-32600 | 잘못된 요청 | 형식이 잘못된 JSON-RPC 요청 |
-32601 | 메서드를 찾을 수 없음 | 알 수 없는 MCP 메서드 |
-32602 | 잘못된 매개변수 | 누락되거나 잘못된 매개변수 (예: 빈 주소, 500자 초과) |
-32603 | 내부 오류 | 서버 측 오류 또는 키에 대해 도구가 활성화되지 않음 |
오류 응답 예시:
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32602,
"message": "Address is required"
}
}API 키에 도구가 활성화되어 있지 않으면 -32603 오류가 발생하며, API Access 대시보드에서 활성화하라는 안내를 받게 됩니다.
문제 해결
증상 | 원인 | 해결 방법 |
| 잘못되었거나 비활성화된 키 | propertyscoop.us/APIAccess에서 키 확인 |
| 이 키에 도구가 활성화되지 않음 | |
| 속도 제한 초과 | 요청 빈도를 줄이거나 더 높은 제한을 위해 문의 |
| 빈 주소 매개변수 | 완전한 미국 주소 제공 |
응답 없음 / 시간 초과 | 네트워크 문제 |
|
링크
라이선스
독점. 서비스 약관은 propertyscoop.us를 참조하세요.
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.
Related MCP Connectors
US property data: powerlines, noise, crime, hazards, schools and more
Zoning, ADU eligibility, flood zone, setbacks, and buildability intelligence for U.S. parcels.
US property risk data for agents: flood, hazards, taxes, air quality. Credits or USDC.
Weather, climate, terrain, fire and flood risk data for any point or polygon on Earth. Free tier.
Related MCP Servers
- AlicenseAqualityDmaintenanceAI-powered property intelligence for instant zoning analysis, buildability assessments, ADU eligibility, flood risk, and development feasibility reports for any US address.51MIT
- 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.6MIT
- FlicenseNot gradedqualityDmaintenanceProvides falling tree risk intelligence for any US property address.
- AlicenseAqualityBmaintenanceUS crime safety scores, recent incidents, neighborhood demographics, rent data, and registered-offender search by address. Free tier available.4MIT
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/goodest/propertyscoop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server