get-weather
Retrieve real-time weather data for any city using the AI MCP ServiceNow integration, enabling quick access without coding.
Instructions
Tool to get the weather of a city
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | The name of the city to get the weather for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "The name of the city to get the weather for",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}