get_weather
Retrieve weather data for a specified city using a Python MCP server, enabling integration with applications like Claude Desktop or Cursor for context-aware weather queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "get_weatherArguments",
"type": "object"
}