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.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Retrieves the current weather information for a given city. Parameters: city (string, required): The name of the city.
Retrieves weather information for a specified city between start and end dates. Parameters: city (string, required): The name of the city; 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).
Retrieves the current time in a specified timezone. Parameters: timezone_name (string, required): IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use UTC timezone if no timezone provided by the user.