RxNorm Codes
Search drugs, look up NDC/RXCUI codes, and get active ingredients via the @sequoiaport/codes package.
When to Apply
- User asks for a drug code or medication identifier
- User needs to look up an NDC (National Drug Code) or RXCUI
- User wants to find active ingredients in a medication
- User mentions drug names, pharmacy codes, or medication lookup
Getting an API Key
First check if SEQUOIA_CODES_API_KEY is already set in the environment. If it is, skip key generation entirely and proceed to usage. Only if no key exists, see AGENT_PROMPT.md for how your agent can obtain one via the agent auth flow.
MCP Server
Once you have an API key, you can set up the MCP server for direct tool access from Claude Code, Cursor, or VS Code. See MCP_SETUP.md.
How It Works
import { SequoiaCodesClient } from "@sequoiaport/codes";
const client = new SequoiaCodesClient({
apiKey: process.env.SEQUOIA_CODES_API_KEY!,
});
Available Operations
client.rxnorm.searchCode({ query, limit? })
Search for drugs by name.
const results = await client.rxnorm.searchCode({
query: "metformin",
limit: 10,
});
// results.results → [{ rxcui, name, tty, similarity, ... }]
client.rxnorm.identifyCode({ type, code })
Look up a drug by NDC or RXCUI.
// By NDC
const byNdc = await client.rxnorm.identifyCode({
type: "ndc",
code: "0002-4112-01",
});
// By RXCUI
const byRxcui = await client.rxnorm.identifyCode({
type: "rxcui",
code: "861004",
});
client.rxnorm.getIngredients({ rxcui })
Get active ingredients for a drug.
const ingredients = await client.rxnorm.getIngredients({ rxcui: "861004" });
// ingredients.results → [{ rxcui, name, tty, ... }]
REST API (curl)
# Search drugs by name
curl -X GET "https://api.sequoiacodes.com/v1/rxnorm/searchCode?query=metformin&limit=10" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Lookup by NDC
curl -X GET "https://api.sequoiacodes.com/v1/rxnorm/identifyCode?type=ndc&code=0002-4112-01" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Lookup by RXCUI
curl -X GET "https://api.sequoiacodes.com/v1/rxnorm/identifyCode?type=rxcui&code=861004" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
# Get active ingredients
curl -X GET "https://api.sequoiacodes.com/v1/rxnorm/getIngredients?rxcui=861004" \
-H "Authorization: Bearer $SEQUOIA_CODES_API_KEY"
Response Fields
Drug results include:
rxcui- RxNorm Concept Unique Identifiername- Drug nametty- Term Type (SCD, SBD, IN, BN, etc.)suppress- Suppression statussimilarity- Search relevance score (0-1)
NDC results include:
ndc- National Drug Coderxcui- Mapped RXCUIname- Drug namestatus- Active/inactivesource- Data source
Common Term Types (TTY)
- IN - Ingredient
- BN - Brand Name
- SCD - Semantic Clinical Drug
- SBD - Semantic Branded Drug
- SCDF - Semantic Clinical Drug Form
- SBDF - Semantic Branded Drug Form