health_canada_drug_detail
Pack: health-canada-drugs · Endpoint: https://gateway.pipeworx.io/health-canada-drugs/mcp
Full Health Canada record for one Canadian drug product: brand name, DIN, company, every active ingredient with its strength, dosage form, route of administration, and market status with the original marketing date. Answers “what is in this Canadian drug”, “what is DIN 01933655”, “is this product still marketed in Canada”, “what strength is X”. Identify the product by its DIN or by the Health Canada drug code. Example: health_canada_drug_detail({ din: “01933655” }); health_canada_drug_detail({ drug_code: 11685 }). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
din | string | no | Drug Identification Number, e.g. “01933655” (8 digits, leading zeros matter) |
drug_code | number | no | Health Canada internal drug code, e.g. 11685 |
Example call
Arguments
{
"din": "01933655"
}
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_drug_detail","arguments":{"din":"01933655"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('health_canada_drug_detail', {
"din": "01933655"
});
More examples
{
"drug_code": 11685
}
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.