get_health_topic

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

Fetch the full plain-language guidance for one health topic by its numeric id (from search_health_topics or get_preventive_recommendations). Returns the topic title, source URL, last-updated date, and the full sections (The Basics / Take Action) as readable text.

Parameters

NameTypeRequiredDescription
topic_idstringyesNumeric topic id, e.g. “538” (colorectal screening).

Example call

Arguments

{
  "topic_id": "538"
}

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":"get_health_topic","arguments":{"topic_id":"538"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_health_topic', {
  "topic_id": "538"
});

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