data
World Bank MCP, CLI, and Lua Integration for AI Agents
World Bank integration docs for AI agents: MCP gateway setup, World Bank CLI commands, Lua API reference, credentials, and function schemas.
6 functions 6 read 0 write No credentials auth
World Bank for agents
No credentials required; available in web and CLI hosts when runtime dependencies are installed.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
worldbank- route_slug
worldbank- package
worldbank- auth_strategy
noneNo credentials- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
false
Quick Links
Lua APIAgent-facing namespace and function reference. World Bank CLIHeadless setup and direct function calls. World Bank MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
World Bank MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for World Bank.
Claude Code World Bank MCP setup for Claude Code. Cursor World Bank MCP setup for Cursor. Codex World Bank MCP setup for Codex. OpenAI Agents World Bank MCP setup for OpenAI Agents SDK. Claude Agent SDK World Bank MCP setup for Claude Agent SDK. Vercel AI SDK World Bank MCP setup for Vercel AI SDK. LangChain World Bank MCP setup for LangChain. LangGraph World Bank MCP setup for LangGraph. CrewAI World Bank MCP setup for CrewAI. MCP clients World Bank MCP setup for Generic MCP Clients.
World Bank CLI Matrix
Use these pages for direct World Bank CLI workflows in scripts, CI, cron, and agent wrappers.
CI World Bank CLI for CI. Cron Jobs World Bank CLI for cron jobs. Shell Scripts World Bank CLI for shell scripts. Headless Automation World Bank CLI for headless automation. Coding Agents World Bank CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
worldbank.worldbank_countries | Read read | 3 | List or search countries from the World Bank. Optional query filters by name. Filter by region (EAS, ECS, LCN, MEA, NAC, SAS, SSF) or income level (HIC, UMC, LMC, LIC). |
worldbank.worldbank_indicators | Read read | 1 | Search economic indicators by keyword. If no query is provided, returns common indicators. Use the indicator code with `worldbank_get_data` to fetch data. Common indicator codes: {$indicators} |
worldbank.worldbank_topics | Read read | 1 | List the 21 World Bank topic categories (e.g., Education, Health, Economy). Optionally provide a topic ID to list indicators in that topic. |
worldbank.worldbank_country_info | Read read | 1 | Get detailed information for a specific country by ISO code, including region, income level, lending type, capital city, and coordinates. |
worldbank.worldbank_get_data | Read read | 5 | Fetch economic indicator data for one or more countries from the World Bank. Supports date ranges and most-recent-value mode. Use `worldbank_indicators` to find indicator codes and `worldbank_countries` to find ISO codes. |
worldbank.worldbank_compare_data | Read read | 3 | Compare a single economic indicator across multiple countries. Returns the most recent value for each country side-by-side. Use `worldbank_indicators` to find indicator codes. |