get-weather
Retrieve weather data for any city using the MCP Weather Service. Input a city name to access accurate weather information quickly and efficiently.
Instructions
Get weather information for a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | City name to get weather for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "City name to get weather for",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}