Earth 2 Elevation Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Earth 2 Elevation Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
本地 stdio MCP 服务,把 Open-Elevation 的海拔查询接口包装成 MCP tools。
get_elevation: 查询单个经纬度的海拔,单位米。get_elevations: 批量查询多个经纬度。get_elevation_profile: 在两点之间均匀采样,生成路径海拔剖面。npm start也可以直接运行:
node .\src\index.js把下面配置加到你的 MCP client 配置里,路径按本机实际目录调整:
{
"mcpServers": {
"earth-2-elevation": {
"command": "node",
"args": [
"D:\\coding\\AI-project\\ai-mcp-factory\\src\\index.js"
],
"env": {
"OPEN_ELEVATION_BASE_URL": "https://api.open-elevation.com"
}
}
}
}Open-Elevation 的公开接口是 POST /api/v1/lookup,请求体格式如下:
{
"locations": [
{ "latitude": 41.161758, "longitude": -8.583933 }
]
}响应会按请求顺序返回 latitude、longitude、elevation。如果没有记录到该坐标的海拔,服务会返回海平面 0 米。
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.