supplement_recent_changes

Pack: nih-supplements · Endpoint: https://gateway.pipeworx.io/nih-supplements/mcp

New supplement product labels entered into NIH’s Dietary Supplement Label Database (DSLD) since a given date — the one NIH supplement upstream that publishes a queryable change signal. Returns each new label’s id, brand, product name, and entry date, newest first; deterministic on replay. Scope is stated, not guessed: DSLD does not publish off-market (withdrawal) transitions as dated events, and neither ODS fact sheets nor NCCIH herb pages publish a queryable list of content-update dates — the response says so explicitly instead of pretending to cover them. Each supplement_factsheet response carries its own ‘reviewed’ date for direct sweeping.

Parameters

NameTypeRequiredDescription
sincestringyesCutoff date, YYYY-MM-DD. Labels entered into DSLD on or after this date are returned.
limitnumbernoMax new labels to return (default 50, max 200). If more entered since the cutoff, the response sets truncated: true.

Example call

Arguments

{
  "since": "2025-09-01",
  "limit": 20
}

curl

curl -X POST https://gateway.pipeworx.io/nih-supplements/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"supplement_recent_changes","arguments":{"since":"2025-09-01","limit":20}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('supplement_recent_changes', {
  "since": "2025-09-01",
  "limit": 20
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nih-supplements": {
      "url": "https://gateway.pipeworx.io/nih-supplements/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026