Skip to main content
Glama
goodest

PropertyScoop MCP Server

by goodest

PropertyScoop MCP 服务器

一个远程 模型上下文协议 (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 公共供水系统 ID

  • population_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 — 来自所有附近发射器的总射频功率密度(以 mW 为单位)

  • emittersNearby — 2 英里内持牌射频发射器的数量


get_noise_score

使用国家交通噪音模型计算环境噪音评分。噪音水平以分贝 (dB) 为单位报告,涵盖道路交通、铁路和航空。根据 EPA 标准,超过 65 dB 的值被认为是嘈杂的。

输入:

{ "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_levelLow(低)、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 访问仪表板单独启用或禁用。

工具

调用量

单次调用价格

get_facing

1 – 2,000 次

$0.02

2,001 – 5,000 次

$0.015

5,001 次以上

$0.01

get_power_substation_location

前 10 次/月

免费

11 次以上

$0.01

get_water_quality

前 10 次/月

免费

11 次以上

$0.01

get_rf_exposure

前 10 次/月

免费

11 次以上

$0.03

get_noise_score

前 10 次/月

免费

11 次以上

$0.01

get_falling_tree_risk

前 10 次/月

免费

11 次以上

$0.20

仅对成功检索数据的 tools/call 请求收费。协议消息(tools/listinitialize)是免费的。

速率限制

限制

数值

突发

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 访问仪表板进行启用。

故障排除

症状

原因

修复

API key validation failed

密钥无效或已停用

propertyscoop.us/APIAccess 验证您的密钥

Method 'X' is not enabled

该密钥未启用此工具

propertyscoop.us/APIAccess 启用它

429 Too Many Requests

超过速率限制

降低请求频率或联系我们以获取更高限制

Address is required

地址参数为空

提供完整的美国街道地址

无响应 / 超时

网络问题

验证与 https://mcp.propertyscoop.us 的连接

链接

许可

专有。服务条款请参阅 propertyscoop.us

Maintenance

ActivityInactive
ResponsivenessNo issues

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

Related MCP Servers

Latest Blog Posts

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