Pipeworx disease

v1.0.0

COVID-19 statistics — global totals, per-country breakdowns, historical trends, and vaccination data from disease.sh

0· 111·0 current·0 all-time
byBruce Gutman@brucegutman

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for brucegutman/pipeworx-disease.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pipeworx disease" (brucegutman/pipeworx-disease) from ClawHub.
Skill page: https://clawhub.ai/brucegutman/pipeworx-disease
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install brucegutman/pipeworx-disease

ClawHub CLI

Package manager switcher

npx clawhub@latest install pipeworx-disease
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description match the actions: the SKILL.md instructs the agent to query a remote disease data service (disease.sh via a pipeworx gateway) and exposes country/global/historical/vaccine tools. The single required binary (curl) is reasonable for calling the remote endpoint.
Instruction Scope
Instructions stay within the purpose (fetch COVID statistics). They show example JSON-RPC calls to https://gateway.pipeworx.io/disease/mcp and provide an MCP config. They do not ask the agent to read local files or unrelated environment variables. However, the MCP config suggests using `npx -y mcp-remote@latest`, which would download and run code from npm if used — this is not declared as a required binary and expands runtime behavior beyond plain HTTP calls.
Install Mechanism
No install spec and no code files — lowest-risk deployment model. The only runtime network activity shown is HTTP POSTs to a named gateway and an optional npx invocation in the MCP config. There are no archive downloads or custom install URLs in the skill itself.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate for a read-only stats-fetching integration.
Persistence & Privilege
always is false and the skill does not request persistent or cross-skill configuration. It does not ask to modify other skills or system-wide settings.
Assessment
This skill appears coherent for fetching COVID-19 data, but it relies on a third‑party gateway (gateway.pipeworx.io) and the MCP config references running `npx mcp-remote@latest` which would download and execute code from npm. Before installing, confirm you trust pipeworx.io and the gateway endpoint, and be aware that any data you send to those endpoints (including parameters and possibly parts of the conversation, depending on invocation) will go to that external service. If you want to avoid running remote npm code, do not execute the MCP npx command and prefer direct HTTP calls (curl) to a trusted API endpoint.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🦠 Clawdis
Binscurl
latestvk975e33c49wr8tqsk76x9xey5s84c2gh
111downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

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

ToolDescription
get_global_statsCurrent global totals: cases, deaths, recovered, active, tests
get_country_statsStats for a specific country by name or ISO code (e.g., "USA", "germany", "gb")
get_historicalTime-series data for cases, deaths, and recovered over N days
get_vaccine_statsVaccination 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"]
    }
  }
}

Comments

Loading comments...