Wraps the National Library of Medicine's RxNav REST API for medication and drug information lookups. No authentication required, which makes it trivial to add pharmaceutical data queries to your AI workflows. The Pipeworx gateway hosts this as a standalone server or as part of their 250+ source collection, and supports their ask_pipeworx natural language interface so you can query drug data without memorizing specific tool names. Useful when you need normalized drug names, NDC codes, interaction data, or any other structured pharmaceutical information that RxNorm provides. Free tier from NLM, streamable HTTP transport.
RxNorm MCP — wraps the NLM RxNav REST API (free, no auth)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"rxnorm": {
"url": "https://gateway.pipeworx.io/rxnorm/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Rxnorm data" })
The gateway picks the right tool and fills the arguments automatically.
MIT