Skills pipeworx-disease
COVID-19 statistics — global totals, per-country breakdowns, historical trends, and vaccination data from disease.sh
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/brucegutman/pipeworx-disease" ~/.claude/skills/openclaw-skills-pipeworx-disease && 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/brucegutman/pipeworx-disease" ~/.openclaw/skills/openclaw-skills-pipeworx-disease && rm -rf "$T"
manifest:
skills/brucegutman/pipeworx-disease/SKILL.mdsource content
COVID-19 Statistics
Real-time and historical COVID-19 data from disease.sh. Pull global totals, per-country stats, time-series trends, and vaccination numbers. Data is aggregated from Johns Hopkins, Worldometers, and government sources.
Tools
| Tool | Description |
|---|---|
| Current global totals: cases, deaths, recovered, active, tests |
| Stats for a specific country by name or ISO code (e.g., "USA", "germany", "gb") |
| Time-series data for cases, deaths, and recovered over N days |
| Vaccination totals — global or per country |
Use cases
- Answering questions about COVID-19 statistics for a specific country
- Charting pandemic trends over time
- Comparing vaccination rates across countries
- Historical research on pandemic impact
Example: Germany's COVID stats
curl -s -X POST https://gateway.pipeworx.io/disease/mcp \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_country_stats","arguments":{"country":"germany"}}}'
MCP config
{ "mcpServers": { "pipeworx-disease": { "command": "npx", "args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/disease/mcp"] } } }