Pipeworx worldbank

v1.0.0

Retrieve global development data like GDP, population, CO2 emissions, literacy, and mortality rates for countries by ISO code and date range.

0· 69·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-worldbank.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Pipeworx worldbank" (brucegutman/pipeworx-worldbank) from ClawHub.
Skill page: https://clawhub.ai/brucegutman/pipeworx-worldbank
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
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

Bare skill slug

openclaw skills install pipeworx-worldbank

ClawHub CLI

Package manager switcher

npx clawhub@latest install pipeworx-worldbank
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (World Bank indicators) match the instructions (tools for country info and indicator time series). No unexplained binaries, credentials, or installs are requested.
Instruction Scope
SKILL.md instructs use of a Pipeworx RPC gateway (https://gateway.pipeworx.io/worldbank/mcp) rather than calling the official World Bank API directly. The instructions do not request any local file access or extra environment variables, but they do send queries and any provided parameters to an external endpoint.
Install Mechanism
There is no install spec and no code files; the skill is instruction-only, so nothing will be written to disk during installation.
Credentials
The skill declares no required environment variables or credentials, which is reasonable for public World Bank data. No excessive secrets or unrelated credentials are requested.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skill configs. Model invocation is allowed (the platform default).
Assessment
This skill appears to do what it says and needs no secrets, but it sends requests to a third‑party gateway (gateway.pipeworx.io) rather than directly to worldbank.org. Before installing, consider whether you trust that gateway with any query parameters or contextual data you might send (avoid including sensitive info in requests). If you need stronger assurance, ask the publisher for documentation on the gateway or prefer a skill that calls the World Bank API directly.

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

latestvk979m7vfexm2ac6mb9z1ev7h5x84ycm3
69downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

World Bank

Access the World Bank's development indicators: GDP, population, CO2 emissions, literacy rates, mortality rates, and hundreds more metrics for every country, going back decades.

Tools

get_country -- Basic country info. Pass an ISO code (e.g., US, GBR, IN) and get the full name, region, income level, capital city, and coordinates.

get_indicator -- Time-series data for any World Bank indicator. Specify a country code, indicator code, and optional date range (default 2015-2024).

get_population -- Shortcut for total population over time (indicator SP.POP.TOTL).

get_gdp -- Shortcut for GDP in current USD over time (indicator NY.GDP.MKTP.CD).

Common indicator codes

CodeMetric
NY.GDP.MKTP.CDGDP (current USD)
SP.POP.TOTLPopulation, total
EN.ATM.CO2E.KTCO2 emissions (kt)
SE.ADT.LITR.ZSLiteracy rate, adult (%)
SH.DYN.MORTUnder-5 mortality rate
SI.POV.GINIGini index

Example: India's GDP over the last decade

curl -X POST https://gateway.pipeworx.io/worldbank/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_gdp","arguments":{"country_code":"IN"}}}'
{
  "mcpServers": {
    "worldbank": {
      "url": "https://gateway.pipeworx.io/worldbank/mcp"
    }
  }
}

Comments

Loading comments...