get_pws_current_conditions
wunderground.comReturns the latest personal weather station observation from https://wunderground.com, including temperature, humidity, wind, solar radiation, pressure, precipitation, and UV when reported by the station.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_pws_current_conditions?
Returns the latest personal weather station observation from https://wunderground.com, including temperature, humidity, wind, solar radiation, pressure, precipitation, and UV when reported by the station. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass station_id, units and get the result back without maintaining a scraper.
Response
{
"observation": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/9237d672-0a7d-41b3-8a3d-249e202f8b7b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "9237d672-0a7d-41b3-8a3d-249e202f8b7b",
"variables": {
"station_id": "ILONDONB3",
"units": "m"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="9237d672-0a7d-41b3-8a3d-249e202f8b7b") — the "get_pws_current_conditions" function, which returns the latest personal weather station observation from https://wunderground.com, including temperature, humidity, wind, solar radiation, pressure, precipitation, and UV when reported by the station.. It takes station_id (str), units (str). Return the result as structured JSON.