list_health_topics
Pack: myhealthfinder · Endpoint: https://gateway.pipeworx.io/myhealthfinder/mcp
Browse the ODPHP/health.gov catalog — list all health topics or all categories (Cancer, Diabetes, Heart Health, Screening Tests, …). Use to discover what guidance exists before searching.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | no | ”topic” (default) or “category”. |
Example call
Arguments
{
"type": "category"
}
curl
curl -X POST https://gateway.pipeworx.io/myhealthfinder/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_health_topics","arguments":{"type":"category"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('list_health_topics', {
"type": "category"
});
More examples
{
"type": "topic"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"myhealthfinder": {
"url": "https://gateway.pipeworx.io/myhealthfinder/mcp"
}
}
}
See Getting Started for client-specific install steps.