who_tb_estimates

Pack: who-tb · Endpoint: https://gateway.pipeworx.io/who-tb/mcp

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 detection rate. Covers 217 countries from 2000 onward. Use for questions about how much tuberculosis a country has, TB death rates, and TB trends over time.

Parameters

NameTypeRequiredDescription
countrystringnoCountry name or ISO code, e.g. “India”, “IND”, “KE”. Omit for all countries.
yearsstringnoYear or range, e.g. “2023” or “2015-2023”. Omit for all years.
limitnumbernoMaximum rows (default 100).

Example call

Arguments

{
  "country": "India",
  "years": "2020-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_estimates","arguments":{"country":"India","years":"2020-2023"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('who_tb_estimates', {
  "country": "India",
  "years": "2020-2023"
});

More examples

{
  "country": "IND"
}

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.

Regenerated from source · build August 6, 2026