openmeteo_get_elevation
ActiveTool of io.github.cyanheads/open-meteo-mcp-server
Terrain elevation from the Copernicus Digital Elevation Model (~90m resolution) for one or more coordinate pairs. Accepts up to 100 pairs per call. Useful for geographic context, elevation-adjusted weather interpretation, or route planning.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"latitudes",
"longitudes"
],
"properties": {
"latitudes": {
"type": "array",
"items": {
"type": "number",
"maximum": 90,
"minimum": -90
},
"maxItems": 100,
"minItems": 1,
"description": "Array of latitudes in decimal degrees (up to 100). Must be same length as longitudes."
},
"longitudes": {
"type": "array",
"items": {
"type": "number",
"maximum": 180,
"minimum": -180
},
"maxItems": 100,
"minItems": 1,
"description": "Array of longitudes in decimal degrees (up to 100). Must be same length as latitudes."
}
}
}Parent server
io.github.cyanheads/open-meteo-mcp-server
https://github.com/cyanheads/open-meteo-mcp-server
1/7 registries