munge.sh

worldbank_get_indicator

Get a World Bank indicator for any country or region. Returns time-series data. Common indicators: NY.GDP.MKTP.CD (GDP), SP.POP.TOTL (population), FP.CPI.TOTL.ZG (inflation), SL.UEM.TOTL.ZS (unemployment). Covers 200+ countries worldwide.

Provider: World Bank · Required: country, indicator

Input schema

{
  "type": "object",
  "required": [
    "country",
    "indicator"
  ],
  "properties": {
    "mrv": {
      "type": "number",
      "description": "Most recent N values to return (default 5)"
    },
    "country": {
      "type": "string",
      "description": "ISO 2-letter country code (e.g. US, DE, CN, AU, JP) or \"world\" for global aggregates"
    },
    "indicator": {
      "type": "string",
      "description": "World Bank indicator code, e.g. NY.GDP.MKTP.CD"
    }
  }
}

Calling this tool

Send an MCP tools/call request to https://munge.sh/mcp with name worldbank_get_indicator.