MCP Weather Server provides real-time weather information through the Open-Meteo API, allowing AI assistants to retrieve current weather conditions for any city. Developed by danielshih, this Python-based server exposes a single tool (get_weather) that accepts a city name parameter and returns formatted weather data. The implementation is designed for easy integration with MCP clients through either manual configuration in cline_mcp_settings.json or via pip installation, making it ideal for applications that need to incorporate up-to-date weather information into conversations without requiring API keys or complex setup.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Get current weather for a city with comprehensive metrics. Parameters: city (string, required) - The name of the city (English names only).
Get weather data for a date range with hourly details. Parameters: city (string, required) - The name of the city (English names only), start_date (string, required) - Start date in format YYYY-MM-DD (ISO 8601), end_date (string, required) - End date in format YYYY-MM-DD (ISO 8601).
Get detailed weather information as structured JSON data. Parameters: city (string, required) - The name of the city (English names only).
Get air quality information with pollutant levels and health advice. Parameters: city (string, required) - The name of the city (English names only), variables (array, optional) - Specific pollutants to retrieve.
Get detailed air quality information as structured JSON data. Parameters: city (string, required) - The name of the city (English names only), variables (array, optional) - Specific pollutants to retrieve.
Get current time in any timezone. Parameters: timezone_name (string, required) - IANA timezone name (e.g., 'America/New_York').
Get timezone information. Parameters: timezone_name (string, required) - IANA timezone name.
Convert time between timezones. Parameters: time_str (string, required) - Time to convert (ISO format), from_timezone (string, required) - Source timezone, to_timezone (string, required) - Target timezone.