get_weather
Retrieve current weather conditions for any location by providing a city, address, or other details using Google Maps MCP Server functionality.
Instructions
Gets the current weather.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | Yes | The location to get weather for (city, address, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"location": {
"description": "The location to get weather for (city, address, etc.)",
"type": "string"
}
},
"required": [
"location"
],
"type": "object"
}