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.
Run instantly:
npx @jaredco/weather-mcp-serverFast, reliable weather data for Claude and other MCP clients. Get current conditions and multi-day forecasts for any location worldwide.
🌐 Remote MCP Server (no install required) https://mcp-weathertrax.jaredco.com
Ask Claude:
“What’s the weather in Miami tomorrow?”
Claude will call the MCP weather server and return a forecast instantly.
Example API call:
curl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{"location":"Miami","query_type":"current"}'Add this to your Claude Desktop configuration:
~/Library/Application Support/Claude/claude_desktop_config.json{
"mcpServers": {
"weathertrax": {
"url": "https://mcp-weathertrax.jaredco.com"
}
}
}Restart Claude Desktop.
You can now ask:
What’s the weather in New York this weekend?curl https://mcp-weathertrax.jaredco.com/healthzcurl https://mcp-weathertrax.jaredco.com/.well-known/mcp/manifestcurl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{
"location": "San Francisco, CA",
"query_type": "current"
}'Example response:
{
"summary": "It is currently 54°F and Clear in San Francisco.",
"temp_high": 54,
"temp_low": 54,
"condition": "Clear",
"wind": "5 mph W",
"humidity": 65
}curl -X POST https://mcp-weathertrax.jaredco.com/tools/weatherTool \
-H "Content-Type: application/json" \
-d '{
"location": "New York",
"query_type": "multi_day",
"num_days": 3
}'Retrieve current weather or forecasts.
Input:
{
"location": "city name or coordinates",
"query_type": "current | multi_day",
"num_days": "optional forecast length"
}7-day planning forecast for outdoor work or events.
Input:
{
"location": "city or place",
"context": "construction | travel | event",
"timeframe": "optional timeframe hint"
}This server supports the full MCP JSON-RPC protocol.
Example tool call:
curl -X POST https://mcp-weathertrax.jaredco.com/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc":"2.0",
"id":1,
"method":"tools/call",
"params":{
"name":"weatherTool",
"arguments":{
"location":"London",
"query_type":"current"
}
}
}'Run locally:
npm install
npm startQuick tests:
npm testFull test suite:
npm run test:fullCurrent results:
67 / 67 tests passingPrivacy policy available at:
https://mcp-weathertrax.jaredco.com/privacy
Key points:
Clone the repo:
git clone https://github.com/jaredco/weather-mcp-server.git
cd weather-mcp-server
npm install
npm startServer runs locally at:
http://localhost:3000MIT License.
Built using the Model Context Protocol by Anthropic.
Weather data provided by World Weather Online.
Server: Production API Version: 1.0.1 MCP Protocol: 2025-03-26
Made with ☀️ for Claude and MCP
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.