Skip to main content
ClaudeWave

RxNorm MCP — wraps the NLM RxNav REST API (free, no auth)

MCP ServersOfficial Registry0 stars0 forks● TypeScriptMITUpdated today
ClaudeWave Trust Score
95/100
✓ Verified
Passed
  • ✓Open-source license (MIT)
  • ✓Actively maintained (<30d)
  • ✓Clear description
  • ✓Topics declared
  • ✓Documented (README)
Last scanned: 9/25/2026
Install in Claude Code / Claude Desktop
Method: NPX · @pipeworx/mcp-rxnorm
Claude Code CLI
claude mcp add mcp-rxnorm -- npx -y @pipeworx/mcp-rxnorm
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-rxnorm": {
      "command": "npx",
      "args": ["-y", "@pipeworx/mcp-rxnorm"]
    }
  }
}
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

# RxNorm — Standardized Drug Concepts

The National Library of Medicine's standardized drug nomenclature. Every prescription, OTC drug, and ingredient in the US healthcare system has an RxCUI (a stable concept ID). RxNorm normalizes drug naming chaos: "Tylenol" and "acetaminophen" and "APAP" all resolve to the same ingredient concept. Free, no auth.

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

## Why this matters for AI agents

Drug data is notoriously messy. Brand names, generic names, salt forms, dose strengths, dosage forms — same molecule, dozens of strings. RxNorm gives you canonical IDs you can use to cross-reference FDA data, drug interaction databases, EHR systems, and clinical trials.

Three core flows:

**1. Resolve a name.** "What's Ozempic?" → `rxnorm_search({name: "ozempic"})` → concept groups by term type (SBD, BN, IN, etc.) with RxCUIs.

**2. Get drug properties.** "What's this RxCUI?" → `rxnorm_get_properties({rxcui})` → ingredient name, strength, dose form, brand status.

**3. Drug interactions — not available.** NLM discontinued the RxNav interaction API in January 2024 and nothing replaced it, so this pack has no `rxnorm_interactions` tool and Pipeworx has no drug-drug interaction source. `pharma_safety_report` returns the FDA label's own Drug Interactions section, which documents one drug rather than checking a pair; a drug missing from that text has not been cleared.

For full drug-safety synthesis combining RxNorm + FDA + ClinicalTrials, use [`compare_entities({type: "drug", values})`] or the `pharma_drug_profile` compound.

## Term types (TTYs) — important to understand

RxNorm has multiple concepts per drug, each at different abstraction levels:

| TTY | Meaning | Example |
|---|---|---|
| **IN** | Ingredient (canonical generic) | "semaglutide" |
| **PIN** | Precise Ingredient | "semaglutide sodium" |
| **BN** | Brand Name | "Ozempic" |
| **SBD** | Semantic Branded Drug (the marketed product) | "Ozempic 0.5 mg/0.75 mL pen injector" |
| **SCD** | Semantic Clinical Drug (generic equivalent of SBD) | "semaglutide 0.5 mg/0.75 mL pen injector" |

For cross-source linking, **always prefer the IN (ingredient) RxCUI when one exists**. Brand drugs in different countries have different SBDs; the IN is global. `resolve_entity({type: "drug"})` picks the canonical RxCUI in priority order IN > PIN > BN > SBD > first available.

## Citable URIs

```
pipeworx://rxnorm/concept/{rxcui}
pipeworx://rxnorm/concept/{rxcui}/interactions
```

RxCUIs are stable and shareable.

## Update cadence

RxNorm publishes monthly updates. New drugs appear within a month of FDA approval; deprecated products are flagged but kept in the database for historical lookup. Pipeworx caches with a 24-hour TTL.

## Common pitfalls

- **Search returns SBD-only for brand queries.** Searching "Ozempic" returns Semantic Branded Drug concepts, not the ingredient. To get to "semaglutide," either search the generic name directly or call `rxnorm_related({rxcui, tty: "IN"})` on a brand RxCUI. The latter currently has bugs in some configurations — see [error recovery](https://pipeworx.io/docs/guides/error-recovery).
- **Spelling matters more than you'd think.** "metformin hydrochloride" and "metformin HCl" return slightly different concept sets. The search is forgiving for common abbreviations but exact for less common ones.
- **NDCs are different.** National Drug Codes (NDCs) are FDA-issued package-level identifiers, not RxCUIs. Use `rxnorm_ndc({rxcui})` to bridge if you need NDC for prescription-fill data.
- **Combination products.** A drug like "Kombiglyze" contains metformin + saxagliptin. Searching "metformin" may surface combination products as the top hit, which isn't what you want for ingredient-level analysis. Filter for SCD or IN, not just take the first result.
- **Discontinued drugs.** Concepts persist after a drug is withdrawn. The `obsolete` flag in the full record tells you whether the drug is currently available.

## Quick Start

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

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

### What this endpoint actually serves

`tools/list` at `https://gateway.pipeworx.io/rxnorm/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 1679+ data sources. The
only difference is which pack's tools are listed **directly**; `ask_pipeworx`
reaches all of them from either one.

## No MCP client? Call it over HTTP

```bash
curl -X POST https://gateway.pipeworx.io/v1/tools/rxnorm_search \
  -H 'Content-Type: application/json' \
  -d '{"name":"Ozempic"}'
```

No account needed for the first calls. Inspect any tool: `GET https://gateway.pipeworx.io/v1/tools/rxnorm_search`. Find one: `POST https://gateway.pipeworx.io/v1/tools/search_packs` with `{"query":"..."}`.

## Standalone (no gateway account)

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

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

Or run it directly to confirm it starts:

```bash
npx -y @pipeworx/mcp-rxnorm
```

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 Rxnorm 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
mcpmcp-servermodel-context-protocolpipeworxrxnorm

What people ask about mcp-rxnorm

What is pipeworx-io/mcp-rxnorm?

+

pipeworx-io/mcp-rxnorm is mcp servers for the Claude AI ecosystem. RxNorm MCP — wraps the NLM RxNav REST API (free, no auth) It has 0 GitHub stars and its last recorded update is dated 2026-09-25.

How do I install mcp-rxnorm?

+

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

Is pipeworx-io/mcp-rxnorm safe to use?

+

Our security agent has analyzed pipeworx-io/mcp-rxnorm 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-rxnorm?

+

pipeworx-io/mcp-rxnorm is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-25, with 0 open issues.

Are there alternatives to mcp-rxnorm?

+

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

Deploy mcp-rxnorm 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-rxnorm
[![Featured on ClaudeWave](https://claudewave.com/api/badge/pipeworx-io-mcp-rxnorm)](https://claudewave.com/repo/pipeworx-io-mcp-rxnorm)
<a href="https://claudewave.com/repo/pipeworx-io-mcp-rxnorm"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-rxnorm" alt="Featured on ClaudeWave: pipeworx-io/mcp-rxnorm" width="320" height="64" /></a>

More MCP Servers

mcp-rxnorm alternatives