Weather MCP

get_weather_details

Get detailed weather information for a specified city as structured JSON data. This tool provides raw weather data for programmatic analysis and processing.

Remote isdaniel/mcp_weather_server

Remote (network-hosted)

Other tools also called get_weather_details? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "description": "The name of the city to fetch weather information for, PLEASE NOTE English name only, if the parameter city isn't English please translate to English before invoking this function."
    },
    "include_forecast": {
      "type": "boolean",
      "default": false,
      "description": "Whether to include forecast data (next 24 hours)"
    }
  }
}