get-current-weather
Retrieve real-time weather data by specifying a city and country code. Integrates with the MCP Servers for accurate and instant weather updates using a straightforward API.
Instructions
Get current weather for a location
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes | City name (e.g. Beijing, London) | |
country | No | Country code (e.g. CN, GB) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"city": {
"description": "City name (e.g. Beijing, London)",
"type": "string"
},
"country": {
"description": "Country code (e.g. CN, GB)",
"type": "string"
}
},
"required": [
"city"
],
"type": "object"
}