Health Canada Drugs

live Health

Health Canada Drug Product Database (fleet #522).

3 tools
0ms auth
free tier 50 calls/day

Tools

health_canada_search_drugs

Search drugs authorised for sale in CANADA by brand name, from Health Canada's Drug Product Database. Returns each product's DIN (Drug Identification Number), brand name, company, human/veterinary cla

No parameters required.

Try it
health_canada_drug_detail

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

No parameters required.

Try it
health_canada_drugs_by_ingredient

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

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/health-canada-drugs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/health-canada-drugs/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"health_canada_search_drugs","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("health_canada_search_drugs", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("health canada drug product database (fleet #522)");