supplement_label
Pack: nih-supplements · Endpoint: https://gateway.pipeworx.io/nih-supplements/mcp
One product’s full DSLD label detail: manufacturer contact, every ingredient with its amount, other (non-active) ingredients, and the precaution/warning statements printed on the bottle. Takes the numeric id a supplement_labels result returned.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string,number | yes | DSLD label id, from a supplement_labels result. |
Example call
Arguments
{
"id": 323200
}
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_label","arguments":{"id":323200}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('supplement_label', {
"id": 323200
});
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.