fetch_weather
Retrieve current weather data for a specified city using the espresso-mcp server. Input the city name to receive accurate weather details instantly.
Instructions
Fetch current weather for a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "fetch_weatherArguments",
"type": "object"
}