who_tb_dictionary
Pack: who-tb · Endpoint: https://gateway.pipeworx.io/who-tb/mcp
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 WHO TB field before reporting a number, or to find which variable answers a question.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | A variable name (“e_inc_100k”) or words from its definition (“incidence”). Omit to list all. |
limit | number | no | Maximum entries (default 50). |
Example call
Arguments
{
"query": "e_inc_100k"
}
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_dictionary","arguments":{"query":"e_inc_100k"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_tb_dictionary', {
"query": "e_inc_100k"
});
More examples
{
"query": "incidence"
}
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.