find_stations
Pack: meteostat · Endpoint: https://gateway.pipeworx.io/meteostat/mcp
Find Meteostat weather station IDs by place name and/or geographic proximity — the lookup you need BEFORE get_daily_history / get_monthly_normals (which require a station_id). Search by name (“San Francisco”, “Heathrow”), filter by country (ISO-2 like “US”, “GB”), and/or rank by nearest to a lat/lon. Returns each station’s id, name, country, region, coordinates, elevation, timezone, and data inventory (which granularities — hourly/daily/monthly — are available and their date ranges, so you can pick a station that actually has the period you need). Use for “weather station near X”, “what is the station ID for Y”, “stations in country Z”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Station/place name substring (case-insensitive), e.g. “Heathrow”, “San Francisco”. |
country | string | no | ISO-2 country code filter (e.g. “US”, “GB”, “DE”). |
near_lat | number | no | Latitude to rank stations by proximity (pair with near_lon). |
near_lon | number | no | Longitude to rank stations by proximity (pair with near_lat). |
limit | number | no | Max stations to return (1-50, default 10). |
Example call
curl -X POST https://gateway.pipeworx.io/meteostat/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"find_stations","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"meteostat": {
"url": "https://gateway.pipeworx.io/meteostat/mcp"
}
}
}
See Getting Started for client-specific install steps.