Rxnorm

live HealthData

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

5 tools
0ms auth
free tier 50 calls/day

Tools

rxnorm_get_properties

Get properties for a drug by its RxCUI (RxNorm concept ID). Returns name, synonym, term type, language, and suppress flag.

No parameters required.

Try it
rxnorm_interactions

Check drug-drug interactions for a given RxCUI. NOTE: The NIH retired this API in January 2024 — this tool may return errors. Use PubMed or drug label lookups for interaction data instead.

No parameters required.

Try it
rxnorm_ndc

Get NDC (National Drug Code) identifiers for a drug by its RxCUI. NDC codes uniquely identify drug products in the US market.

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/rxnorm/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/rxnorm/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"rxnorm_search","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("rxnorm_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("rxnorm mcp — wraps the nlm rxnav rest api (free, no auth)");

Related compound tools

These combine Rxnorm with other data sources in a single call:

Pharma Intel MCP — Compound tools that chain ClinicalTrials.gov,

3 tools — pharma_drug_profile, pharma_pipeline_scan, pharma_safety_report