World Bank

live Reference

Country statistics, GDP, population, and development indicators from the World Bank

4 tools
0ms auth
free forever

Tools

get_country required: country_code

Get country information (region, income level, capital)

Parameters
Name Type Description
country_code req string ISO 3166-1 alpha-2 or alpha-3 code
get_indicator required: country_code, indicator

Get a World Bank indicator for a country over time

Parameters
Name Type Description
country_code req string Country code
indicator req string Indicator code (e.g., NY.GDP.MKTP.CD, SP.POP.TOTL)
date_range opt string Year range (e.g., 2015:2024)
get_population required: country_code

Get population data for a country

Parameters
Name Type Description
country_code req string Country code
get_gdp required: country_code

Get GDP data for a country

Parameters
Name Type Description
country_code req string Country code

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/worldbank/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/worldbank/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_country","arguments":{"country_code": "example"}}}'