who_tb_notifications
Pack: who-tb · Endpoint: https://gateway.pipeworx.io/who-tb/mcp
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 notified cases. Notifications are reported cases, which is a different measure from estimated incidence. Use for questions about diagnosed and reported TB cases.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Country name or ISO code. |
years | string | no | Year or range, e.g. “2023” or “2015-2023”. |
limit | number | no | Maximum rows (default 100). |
Example call
Arguments
{
"country": "KE",
"years": "2023"
}
curl
curl -X POST https://gateway.pipeworx.io/who-tb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"who_tb_notifications","arguments":{"country":"KE","years":"2023"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_tb_notifications', {
"country": "KE",
"years": "2023"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"who-tb": {
"url": "https://gateway.pipeworx.io/who-tb/mcp"
}
}
}
See Getting Started for client-specific install steps.