get_current_weather
Retrieve real-time weather data for any specified location using the Weather MCP Server. Input a location name to fetch current conditions instantly.
Instructions
Get current weather information for a specified location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | Location name (e.g., Hong Kong, Tokyo, London) |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"description": "Location name (e.g., Hong Kong, Tokyo, London)",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}