Weather Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Weather Mcp Server (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 alerts and forecasts using the National Weather Service (NWS) API. This server is built with Python and fastmcp, and is designed to integrate seamlessly with Claude Desktop.
This server exposes two main tools:
docker build -t weather-mcp .Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"weather": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"weather-mcp"
]
}
}
}To test your changes during development, rebuild and run the container manually:
# Rebuild the image
docker build -t weather-mcp .
# Run the container (interactive mode to test stdin/stdout)
docker run -i --rm weather-mcpYou can then paste JSON-RPC messages (if you know them) or simply ensure the container starts without errors.
To verify a specific tool execution (e.g., getting alerts), you can pipe a request into the container:
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "get_alerts", "arguments": {"state": "TX"}}}' | docker run -i --rm weather-mcp~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.