weather_info
Retrieve mock weather data for a specific city using the weather_info tool on my-mcp-server. Input the city name to get weather information instantly.
Instructions
Get weather information for a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The city name |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"description": "The city name",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}