Weather Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Weather Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides real-time weather data and alerts from the National Weather Service (NWS) API.
get_forecastGet a detailed weather forecast for a specific location.
Parameters:
latitude (float): Latitude of the locationlongitude (float): Longitude of the locationReturns: Formatted forecast for the next 5 periods including temperature, wind conditions, and detailed descriptions.
Example:
get_forecast(40.7128, -74.0060) # New York Cityget_alertsGet active weather alerts for a US state.
Parameters:
state (string): Two-letter US state code (e.g., "CA", "NY", "TX")Returns: List of active weather alerts with event type, area, severity, description, and instructions.
Example:
get_alerts("CA") # California alertsgit clone https://github.com/Benziela/weather-mcp.git
cd weather-mcpuv syncAdd this configuration to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"weather": {
"command": "uv",
"args": [
"--directory",
"C:\\Users\\jonathbenjamin_a\\Learn\\weather-mcp",
"run",
"weather"
]
}
}
}Run the server directly:
uv run weatherThe project structure:
weather-mcp/
├── weather.py # Main MCP server implementation
├── main.py # Entry point
├── pyproject.toml # Project configuration
├── uv.lock # Dependency lock file
└── README.md # This fileThis server uses the National Weather Service API, which provides:
httpx - Async HTTP client for API requestsmcp - Model Context Protocol SDK with CLI supportMIT
Contributions are welcome! Please feel free to submit a Pull Request.
Benziela
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.