get_weather
Retrieve real-time weather data for a specified location with customizable temperature units using this HTTP-based utility on the Simple HTTP MCP Server.
Instructions
Get the current weather in a given location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | The location to get the weather for | |
unit | No | The unit of temperature | celsius |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"description": "The location to get the weather for",
"title": "Location",
"type": "string"
},
"unit": {
"default": "celsius",
"description": "The unit of temperature",
"title": "Unit",
"type": "string"
}
},
"required": [
"location"
],
"title": "get_weatherArguments",
"type": "object"
}