Nih Dsld Tools#

Configuration File: nih_dsld_tools.json Tool Type: Local Tools Count: 2

This page contains all tools defined in the nih_dsld_tools.json configuration file.

Available Tools#

NIHDSLD_get_label (Type: NIHDSLDTool)#

Retrieve one dietary supplement’s full label from the NIH DSLD: every ingredient with its per-ser…

NIHDSLD_get_label tool specification

Tool Information:

  • Name: NIHDSLD_get_label

  • Type: NIHDSLDTool

  • Description: Retrieve one dietary supplement’s full label from the NIH DSLD: every ingredient with its per-serving amount, unit, and percent daily value, plus serving size and brand. Example: product_id=20581 (Vitamin D Gummy Vitamins) returns 2000 IU Vitamin D at 500% daily value per 2-gummy serving. Use NIHDSLD_search_products to find a product_id.

Parameters:

  • product_id ([‘string’, ‘integer’]) (required) DSLD product identifier, e.g. 20581.

Example Usage:

query = {
    "name": "NIHDSLD_get_label",
    "arguments": {
        "product_id": "example_value"
    }
}
result = tu.run(query)

NIHDSLD_search_products (Type: NIHDSLDTool)#

Search the NIH Dietary Supplement Label Database (DSLD), covering over 200,000 US supplement prod…

NIHDSLD_search_products tool specification

Tool Information:

  • Name: NIHDSLD_search_products

  • Type: NIHDSLDTool

  • Description: Search the NIH Dietary Supplement Label Database (DSLD), covering over 200,000 US supplement product labels, by product name, brand, or ingredient. Returns each match’s product_id, brand, product type, and market status. Example: query=’vitamin d’ or query=’turmeric curcumin’. Use product_id with NIHDSLD_get_label for the full ingredient list with amounts.

Parameters:

  • query (string) (required) Product name, brand, or ingredient, e.g. ‘vitamin d’, ‘turmeric’, ‘Nature Made’.

  • limit ([‘integer’, ‘null’]) (optional) Max products to return, 1-100. Default 25.

Example Usage:

query = {
    "name": "NIHDSLD_search_products",
    "arguments": {
        "query": "example_value"
    }
}
result = tu.run(query)