mechatronic-solutions-llc/weatherforensics-mcpWeatherForensics is a Data as a Service (DaaS) that provides comprehensive historical weather data, including standard conditions and severe weather events, relative to a specified target location and timestamp. While most services focus on the "what," our proprietary engine calculates the localized impact of historical weather events—ranging from localized tornadoes to regional hurricanes—at a specific coordinate and datetime. Visit the GitHub repository at https://github.com/markwkiehl/WeatherForensics-MCP to access the sample Python client script (mcp_client_noaa.py). That script will allow you to interact with the WeatherForensics Model Context Protocol (MCP) server. No registration or API Key required for the "Forever Free" Tier. To use the WeatherForensics Model Context Protocol (MCP) directly within Claude Desktop, you must bridge its local standard input/output (stdio) requirement to our remote Streamable HyperText Transfer Protocol (HTTP) server. You do this by pointing Claude Desktop to the included proxy script. Add the following to your `claude_desktop_config.json` file: { "mcpServers": { "weatherforensics": { "command": "python", "args": [ "/absolute/path/to/WeatherForensics-MCP/mcp_stdio_proxy.py" ], "env": { "WeatherForensics_API_KEY": "" } } } } - Leave `WeatherForensics_API_KEY` blank to use the Forever Free subscription tier. - Ensure you replace `/absolute/path/to/` with the actual directory path to the cloned repository on your local machine.