get_stations_near
Find nearby weather stations by specifying latitude, longitude, and radius using the WeatherXM Pro MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lat | Yes | Latitude of the center of the area | |
lon | Yes | Longitude of the center of the area | |
radius | Yes | Radius in meters for which stations are queried |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"lat": {
"description": "Latitude of the center of the area",
"type": "number"
},
"lon": {
"description": "Longitude of the center of the area",
"type": "number"
},
"radius": {
"description": "Radius in meters for which stations are queried",
"type": "number"
}
},
"required": [
"lat",
"lon",
"radius"
],
"type": "object"
}