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-usgswater" ~/.claude/skills/clawdbot-skills-pipeworx-usgswater && rm -rf "$T"
manifest:
skills/b-gutman/pipeworx-usgswater/SKILL.mdsource content
USGS Water
Real-time streamflow and gage height data from the USGS National Water Information System. Monitor rivers, creeks, and streams across the United States.
Tools
get_current -- Current instantaneous readings for a USGS monitoring site. Returns discharge (cubic feet per second) and gage height (feet) with timestamps and data quality flags.
search_sites -- Find active stream-gage sites in a US state that have real-time data. Returns site ID, name, coordinates, HUC code, and drainage area.
get_daily -- Historical daily mean streamflow values for a site between two dates.
Example: Potomac River at Little Falls
Site 01646500 monitors the Potomac River near Washington, DC:
curl -X POST https://gateway.pipeworx.io/usgswater/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_current","arguments":{"site_id":"01646500"}}}'
Finding site IDs
Use
search_sites with a two-letter state abbreviation. For example, "VA" returns all active stream gages in Virginia with their site IDs and coordinates.
{ "mcpServers": { "usgswater": { "url": "https://gateway.pipeworx.io/usgswater/mcp" } } }