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.
An MCP server that provides:
Data is sourced from the public NWS API at https://api.weather.gov.
| Tool | Description | Inputs |
|---|---|---|
get_alerts | Fetch active NWS alerts for a US state | state (string, two-letter code) |
get_forecast | Fetch short-term forecast (next 5 periods) for coordinates | latitude (number), longitude (number) |
Install dependencies:
pip install .Run the MCP server (stdio transport):
python -m weather.weatherYour MCP client should be configured to launch the server via the package entrypoint or the above module path.
See server.json for registry metadata including name, version, tools, and entrypoint configuration.
mcp-publisher login github mcp-publisher publish curl "https://registry.modelcontextprotocol.io/v0/servers?search=io.github.vtiwari/weather-mcp"If this directory is not yet a git repo:
git init
git add .
git commit -m "Initial commit: Weather MCP server"Create repo (GitHub CLI) and push:
gh repo create vtiwari/weather-mcp --public --source . --remote origin --pushIf not using GitHub CLI, create the repo manually via the GitHub web UI, then:
git remote add origin https://github.com/vtiwari/weather-mcp.git
git branch -M main
git push -u origin mainTag version for release consistency:
git tag v0.1.0
git push origin v0.1.0To distribute via PyPI, ensure pyproject.toml includes build backend and metadata (authors, license). Then:
pip install build twine
python -m build
twine upload dist/*MIT (adjust if different).
This server uses public NOAA/NWS endpoints. Respect API usage guidelines and rate limits.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.