Skip to main content
ClaudeWave
pipeworx-io avatar
pipeworx-io

mcp-health-canada-drugs

View on GitHub

Health Canada Drug Product Database (fleet #522).

MCP ServersOfficial Registry0 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 9/15/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-health-canada-drugs
Claude Code CLI
claude mcp add mcp-health-canada-drugs -- npx -y @pipeworx/mcp-health-canada-drugs
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-health-canada-drugs": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-health-canada-drugs"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview

# Health Canada Drugs — the Canadian Drug Product Database

Every drug authorised for sale in **Canada**: DIN, brand name, active ingredients with strengths, dosage form, route, market status and the company behind it.

Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1573+ live data sources.

## Scope — Canada, and only Canada

This is Canadian marketing authorisation. US approvals and labels are `openfda` and `dailymed`; the two are separate regulatory acts and a drug can be authorised in one and not the other. Tools are prefixed `health_canada_*` so they never win a generic drug question.

## Tools

| Tool | Answers |
|---|---|
| `health_canada_search_drugs` | *Is Tylenol approved in Canada?* — brand-name search, returns DINs |
| `health_canada_drug_detail` | *What is DIN 01933655?* — ingredients, strengths, form, route, status |
| `health_canada_drugs_by_ingredient` | *Which Canadian drugs contain acetaminophen?* |

## Auth

Keyless. No registration.

## Data source

- <https://health-products.canada.ca/api/drug/> — Health Canada Drug Product Database.

### Things the next person would otherwise rediscover

- **An unrecognised filter is silently ignored and returns the ENTIRE 15 MB database**, with HTTP 200 and the drug you asked about somewhere inside it. The query parameter is `brandname`; the JSON field is `brand_name`. Measured: `?brandname=ACTIFED` → 3,576 bytes; `?brand_name=ACTIFED` → 15,040,036 bytes; `?search=ACTIFED` → 15,040,036 bytes. Matching the response field name is the natural guess and it is the wrong one. This pack whitelists the working parameters and throws rather than send an unknown one.
- **`id=` means different things on different endpoints.** On `/drugproduct/`, `/activeingredient/`, `/status/`, `/form/` and `/route/` it is the **drug** code. On `/company/` it is the **company** code. Drug `11685` is ACTIFED PLUS CAPLET (Glaxo Wellcome); company `11685` is DERMAL DEFENSE, INC. of Michigan. Passing a drug code to `/company/` returns a real record for an unrelated firm with nothing to signal the switch — so the company is read from the drug's own record and `/company/` is never called with a drug code here.
- **The upstream returns a bare object for a single hit and an array otherwise.** Code that assumes an array drops every single-result lookup.
- **DIN leading zeros are significant** — `01933655` is not `1933655`.
- **No working company-name filter.** Both `companyname` and `company_name` return the full 1.4 MB company list, so company search is deliberately not offered rather than shipped as a 1.4 MB-per-call tool.
- **A "Cancelled Post Market" status is not a safety withdrawal** — Health Canada retains records for products no longer marketed, for any reason.

## Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

```json
{
  "mcpServers": {
    "health-canada-drugs": {
      "url": "https://gateway.pipeworx.io/health-canada-drugs/mcp"
    }
  }
}
```

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/health-canada-drugs/mcp` returns the tools in the table
above **plus the shared Pipeworx meta-tools** — `ask_pipeworx`,
`discover_tools`, `search_within`, `remember`/`recall` and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's `initialize` response states its exact scope, and
is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
`ask_pipeworx`, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed
directly, instead of just this one's:

```json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
```

Both URLs reach the same gateway and the same 1573+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## Standalone (no gateway account)

This package also runs as a local stdio MCP server — no Pipeworx account, no
gateway round-trip:

```json
{
  "mcpServers": {
    "health-canada-drugs": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-health-canada-drugs"]
    }
  }
}
```

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-health-canada-drugs
```

It speaks MCP over stdin/stdout and answers `initialize`/`tools/list`/`tools/call`
for **only** this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.

## Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English —
this works on the pack endpoint above as well as on the full gateway:

```
ask_pipeworx({ question: "your question about Health Canada Drugs data" })
```

The gateway picks the right tool and fills the arguments automatically.

## More

- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)

## License

MIT
health-canada-drugsmcpmcp-servermodel-context-protocolpipeworx

What people ask about mcp-health-canada-drugs

What is pipeworx-io/mcp-health-canada-drugs?

+

pipeworx-io/mcp-health-canada-drugs is mcp servers for the Claude AI ecosystem. Health Canada Drug Product Database (fleet #522). It has 0 GitHub stars and its last recorded update is dated 2026-09-14.

How do I install mcp-health-canada-drugs?

+

You can install mcp-health-canada-drugs by cloning the repository (https://github.com/pipeworx-io/mcp-health-canada-drugs) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is pipeworx-io/mcp-health-canada-drugs safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-health-canada-drugs and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.

Who maintains pipeworx-io/mcp-health-canada-drugs?

+

pipeworx-io/mcp-health-canada-drugs is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-14, with 0 open issues.

Are there alternatives to mcp-health-canada-drugs?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy mcp-health-canada-drugs to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: pipeworx-io/mcp-health-canada-drugs
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-health-canada-drugs)](https://claudewave.com/repo/pipeworx-io-mcp-health-canada-drugs)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-health-canada-drugs"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-health-canada-drugs" alt="Featured on ClaudeWave: pipeworx-io/mcp-health-canada-drugs" width="320" height="64" /></a>