current_weather
ActiveTool of mcp-openweather
declared in 0.1.0
Get the current weather for a city or coordinates: temperature, "feels like", conditions, humidity, wind speed, and cloud cover. Example: current_weather({ city: "London", units: "metric" })
Parameters schema
{
"type": "object",
"required": [],
"properties": {
"lat": {
"type": "number",
"description": "Latitude. Use with lon instead of city."
},
"lon": {
"type": "number",
"description": "Longitude. Use with lat instead of city."
},
"city": {
"type": "string",
"description": "City name, optionally with country code, e.g. \"London\" or \"London,GB\". Provide this OR lat/lon."
},
"units": {
"enum": [
"metric",
"imperial",
"standard"
],
"type": "string",
"description": "Temperature units: \"metric\" (C, default), \"imperial\" (F), or \"standard\" (K)."
},
"_apiKey": {
"type": "string",
"description": "Optional — your own OpenWeatherMap API key for higher limits; omit to use the shared Pipeworx key."
}
}
}Parent server
mcp-openweather
https://github.com/pipeworx-io/mcp-openweather
2/7 registries