KosmoKrator

data

World Bank MCP Gateway for AI Agents

Expose World Bank tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

6 functions 6 read 0 write No credentials auth

World Bank MCP Gateway

Expose World Bank to MCP clients with `kosmokrator mcp:serve --integration=worldbank`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=worldbank --write=deny --json
{
  "mcpServers": {
    "kosmokrator-worldbank": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=worldbank",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=worldbank --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__worldbank__worldbank_countries worldbank.worldbank_countries Read read
integration__worldbank__worldbank_indicators worldbank.worldbank_indicators Read read
integration__worldbank__worldbank_topics worldbank.worldbank_topics Read read
integration__worldbank__worldbank_country_info worldbank.worldbank_country_info Read read
integration__worldbank__worldbank_get_data worldbank.worldbank_get_data Read read
integration__worldbank__worldbank_compare_data worldbank.worldbank_compare_data Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.