Who Tb
live ReferenceWHO Global Tuberculosis Programme — the TME data collection.
Tools
who_tb_estimates WHO estimates of tuberculosis burden by country and year — TB incidence per 100 000 and in absolute cases with uncertainty ranges, TB mortality, the share of TB cases that are HIV-positive, and case d
No parameters required.
Try it
who_tb_notifications Tuberculosis cases actually notified to WHO by national TB programmes, by country and year — new and relapse cases, laboratory-confirmed versus clinically diagnosed, and HIV testing coverage among not
No parameters required.
Try it
who_tb_budget National tuberculosis programme financing by country and year — total TB budget, and budgeted cost per patient for drug-susceptible and multidrug-resistant TB treatment, with patients expected to be t
No parameters required.
Try it
who_tb_dictionary Explain the column names used in WHO tuberculosis data — what e_inc_100k, c_newinc, e_mort_num or budget_cpp_mdr actually mean, which dataset each belongs to, and its definition. Use to interpret a WH
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/who-tb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/who-tb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"who_tb_estimates","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("who_tb_estimates", {}); // Or ask in plain English:
const answer = await px.ask("who global tuberculosis programme — the tme data collection");