compare_countries

Pack: worldbank · Endpoint: https://gateway.pipeworx.io/worldbank/mcp

Compare a World Bank indicator across MULTIPLE countries in one call, returned ranked high→low. PREFER for “GDP per capita: US vs China vs Germany”, “rank the G7 by CO2 emissions”, “compare population of ”. Pass 2+ ISO country codes. Defaults to each country’s most-recent available value; pass a year for a specific year. Common indicators: NY.GDP.MKTP.CD (GDP), NY.GDP.PCAP.CD (GDP per capita), SP.POP.TOTL (population), EN.GHG.CO2.MT.CE.AR5 (CO2, Mt), FP.CPI.TOTL.ZG (inflation %). For CO2 rankings prefer country_co2_emissions, which knows the right series.

Parameters

NameTypeRequiredDescription
country_codesstringyes2+ ISO country codes, comma- or semicolon-separated (e.g. “US,CN,DE” or “USA;CHN;DEU”).
indicatorstringyesWorld Bank indicator code (e.g. “NY.GDP.PCAP.CD”, “SP.POP.TOTL”, “EN.GHG.CO2.MT.CE.AR5”).
yearstringnoOptional 4-digit year (e.g. “2023”). Omit for each country’s most-recent available value.

Example call

Arguments

{
  "country_codes": "US,CN,DE",
  "indicator": "NY.GDP.PCAP.CD"
}

curl

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":"compare_countries","arguments":{"country_codes":"US,CN,DE","indicator":"NY.GDP.PCAP.CD"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('compare_countries', {
  "country_codes": "US,CN,DE",
  "indicator": "NY.GDP.PCAP.CD"
});

More examples

{
  "country_codes": "GB;FR;JP;CA",
  "indicator": "SP.DYN.LE00.IN",
  "year": "2022"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "worldbank": {
      "url": "https://gateway.pipeworx.io/worldbank/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 9, 2026