get_current_weather
Retrieve real-time weather data for a specified city using this tool. Integrates with Multi-MCPs to fetch accurate weather information quickly and efficiently.
Instructions
Get current weather by city name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | City name, e.g., London |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"description": "City name, e.g., London",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}