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

NameTypeRequiredDescription
querystringyesTopic, disease, title words or author, e.g. “tuberculosis treatment guidelines”.
limitnumbernoResults per page, max 100 (default 10).
pagenumbernoZero-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.

Regenerated from source · build August 6, 2026