get_weather
Retrieve current weather data for a specified city using the MCP Server Demo. Input the city name to access accurate weather information quickly.
Instructions
it gets and retuns the weather of the city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "get_weatherArguments",
"type": "object"
}