get-weather
Retrieve weather information for a specified city using the Weather MCP Server's get-weather tool. Input the city name to generate accurate weather data.
Instructions
Tool to get the weather for a given city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The city to get the weather for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "The city to get the weather for",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}