health_canada_drugs_by_ingredient
Pack: health-canada-drugs · Endpoint: https://gateway.pipeworx.io/health-canada-drugs/mcp
Find Canadian drug products containing a given active ingredient, from Health Canada’s Drug Product Database — every product whose formulation lists that ingredient, with its strength and the product it belongs to. Answers “which Canadian drugs contain acetaminophen”, “products with metformin approved in Canada”, “what contains ingredient X in Canada”. Ingredient names are the official ones and are matched as a partial, case-insensitive match (“ACETAMINOPHEN”, “METFORMIN HYDROCHLORIDE”). Canadian authorisations only. Example: health_canada_drugs_by_ingredient({ ingredient: “ACETAMINOPHEN”, limit: 20 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ingredient | string | yes | Active ingredient name, e.g. “ACETAMINOPHEN”, “metformin” |
limit | number | no | Max results (default 25, max 100) |
Example call
Arguments
{
"ingredient": "ACETAMINOPHEN",
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/health-canada-drugs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"health_canada_drugs_by_ingredient","arguments":{"ingredient":"ACETAMINOPHEN","limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('health_canada_drugs_by_ingredient', {
"ingredient": "ACETAMINOPHEN",
"limit": 20
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"health-canada-drugs": {
"url": "https://gateway.pipeworx.io/health-canada-drugs/mcp"
}
}
}
See Getting Started for client-specific install steps.