Tools Reference
World Bank
4 tools for accessing World Bank data. No additional API key required.
worldbank-indicator
Query World Bank development indicators — GDP, population, poverty rates, education, health, and 1,400+ other indicators by country and year.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| indicator | string | required | Indicator code (e.g., "NY.GDP.MKTP.CD" for GDP) |
| country | string | optional | ISO country code or "all" |
| startYear | number | optional | Start year |
| endYear | number | optional | End year |
Example
worldbank-indicator(indicator: "NY.GDP.MKTP.CD", country: "US", startYear: 2020)worldbank-countries
Get World Bank country metadata — region, income level, capital city, lending type, and more.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| country | string | optional | ISO country code or "all" |
| region | string | optional | Region code |
| incomeLevel | string | optional | Income level: "LIC", "MIC", "HIC" |
Example
worldbank-countries(incomeLevel: "HIC")worldbank-topics
Browse World Bank data topics and their associated indicators.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| topicId | string | optional | Topic ID for detail view |
Example
worldbank-topics()worldbank-search-indicators
Search World Bank indicators by keyword to find the right indicator code.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| query | string | required | Search keyword (e.g., "GDP", "literacy", "CO2") |
| limit | number | optional | Number of results |
Example
worldbank-search-indicators(query: "renewable energy")