weather-mcp-server
Verified Safeby laoyouf
Overview
Provides real-time weather information for specified cities by querying the wttr.in API, primarily for use within agent frameworks like HelloAgents.
Installation
python server.pyEnvironment Variables
- PORT
- HOST
Security Notes
The server uses the 'requests' library to call the 'wttr.in' public API. User-provided city names are passed directly into the URL for the external API call. While 'wttr.in' is generally robust, passing unsanitized user input directly into a URL path could theoretically pose a minor risk if the external API had specific vulnerabilities, though the 'requests' library usually handles basic URL encoding. There are no direct uses of 'eval', 'exec', or 'os.system' with user input. No hardcoded secrets were found. Network requests include a timeout. Overall, it is quite safe for its intended purpose.
Similar Servers
mcp_server_weather_jayden
This server provides current and forecasted weather data for specific geographical coordinates as a tool callable by an AI agent.
weather-mcp-server
Provides real-time weather information for specified cities via an MCP server, integrating with LLM agents.
mcp_server_weather_taeyoung
Provides a Micro-Agent Platform (MCP) tool to fetch current weather forecasts for specified geographical coordinates.
Weather_MCP_Server
Provides real-time weather data, forecasts, and weather comparison between cities to AI assistants via an MCP server.