search_health_topics

Pack: myhealthfinder · Endpoint: https://gateway.pipeworx.io/myhealthfinder/mcp

Full-text search ODPHP/health.gov health topics by keyword (e.g. “colorectal”, “diabetes”, “blood pressure”). Returns matching topics with id, title, categories, and source URL. Use get_health_topic with an id for the full guidance.

Parameters

NameTypeRequiredDescription
keywordstringyesSearch term, e.g. “colorectal cancer”.

Example call

Arguments

{
  "keyword": "colorectal cancer screening"
}

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":"search_health_topics","arguments":{"keyword":"colorectal cancer screening"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_health_topics', {
  "keyword": "colorectal cancer screening"
});

More examples

{
  "keyword": "diabetes"
}

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.

Regenerated from source · build August 15, 2026