who_iris_search
Pack: who-iris · Endpoint: https://gateway.pipeworx.io/who-iris/mcp
Search WHO publications and official documents — guidelines, technical reports, World Health Reports, weekly epidemiological records and governing-body papers — by topic, disease, author or title. Returns each publication with its title, authors, publication date, document type, MeSH subjects, abstract and a permanent link. Use to find what the World Health Organization has actually published on a health topic.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Topic, disease, title words or author, e.g. “tuberculosis treatment guidelines”. |
limit | number | no | Results per page, max 100 (default 10). |
page | number | no | Zero-based page number for paging through results. |
Example call
Arguments
{
"query": "tuberculosis treatment guidelines",
"limit": 3
}
curl
curl -X POST https://gateway.pipeworx.io/who-iris/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"who_iris_search","arguments":{"query":"tuberculosis treatment guidelines","limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('who_iris_search', {
"query": "tuberculosis treatment guidelines",
"limit": 3
});
More examples
{
"query": "malaria"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"who-iris": {
"url": "https://gateway.pipeworx.io/who-iris/mcp"
}
}
}
See Getting Started for client-specific install steps.