Skills pipeworx-weather

Weather

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/b-gutman/pipeworx-weather" ~/.claude/skills/openclaw-skills-pipeworx-weather && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/b-gutman/pipeworx-weather" ~/.openclaw/skills/openclaw-skills-pipeworx-weather && rm -rf "$T"
manifest: skills/b-gutman/pipeworx-weather/SKILL.md
source content

Weather

Current conditions and multi-day forecasts for any location on Earth. Temperatures in Fahrenheit, wind in mph.

get_weather

Pass a latitude and longitude, get back: temperature, feels-like temperature, humidity percentage, weather conditions (clear, cloudy, rain, snow, thunderstorm, etc.), wind speed, and wind direction.

get_forecast

Up to 16 days of daily forecasts. Each day includes the high, low, total precipitation in mm, and conditions.

Example: current weather in San Francisco

curl -X POST https://gateway.pipeworx.io/weather/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_weather","arguments":{"latitude":37.7749,"longitude":-122.4194}}}'

Example: 5-day forecast for London

curl -X POST https://gateway.pipeworx.io/weather/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_forecast","arguments":{"latitude":51.5074,"longitude":-0.1278,"days":5}}}'

Powered by Open-Meteo. No API key needed.

{
  "mcpServers": {
    "weather": {
      "url": "https://gateway.pipeworx.io/weather/mcp"
    }
  }
}