who_tb_budget
Pack: who-tb · Endpoint: https://gateway.pipeworx.io/who-tb/mcp
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 treated. Use for questions about TB programme funding and the cost of TB treatment.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
country | string | no | Country name or ISO code. |
years | string | no | Year or range. |
limit | number | no | Maximum rows (default 100). |
Example call
Arguments
{
"country": "Nigeria",
"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_budget","arguments":{"country":"Nigeria","years":"2023"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_tb_budget', {
"country": "Nigeria",
"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.