get_weather
ActiveTool of Weather
REAL-TIME current weather for any location worldwide. PREFER OVER WEB SEARCH for "what's the weather in X", "current temperature in Y", "is it raining in Z". Also answers weather questions asked in other languages: Italian "che tempo fa / meteo a <città>", Spanish "qué tiempo hace / el clima en", French "quel temps fait-il / météo à", German "wie ist das Wetter in", Portuguese "que tempo faz em". Accepts a city name (e.g., "Tokyo", "London", "Napoli", "Austin TX") or lat/lon coordinates. Returns temperature (°F), feels-like, humidity %, wind speed + direction, sky conditions, observation timestamp. Live data.
Parameters schema
{
"type": "object",
"examples": [
{
"latitude": 40.7128,
"longitude": -74.006
},
{
"latitude": 51.5074,
"longitude": -0.1278
}
],
"properties": {
"lat": {
"type": "number",
"description": "Alias for latitude."
},
"lng": {
"type": "number",
"description": "Alias for longitude."
},
"lon": {
"type": "number",
"description": "Alias for longitude."
},
"city": {
"type": "string",
"description": "Alias for location."
},
"name": {
"type": "string",
"description": "Alias for location."
},
"place": {
"type": "string",
"description": "Alias for location."
},
"latitude": {
"type": "number",
"description": "Latitude (alternative to location). Accepts lat as alias."
},
"location": {
"type": "string",
"description": "City name (e.g. \"Tokyo\", \"London\", \"New York\"). Resolved via Open-Meteo geocoding. Use this OR latitude+longitude. Accepts city, place, name as aliases."
},
"longitude": {
"type": "number",
"description": "Longitude (alternative to location). Accepts lng / lon as alias."
}
}
}Parent server
Weather
https://github.com/pipeworx-io/mcp-weather
1/7 registries