rx-shortage-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENFDA_API_KEY | No | Optional openFDA API key to raise daily request limit. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| rx_healthA | Confirm the rx_shortage_mcp server is running and reachable. |
| rx_check_shortageA | Check the current U.S. FDA (openFDA) shortage status of a drug. |
| rx_normalize_drugA | Normalize a messy drug name/brand/typo to an RxNorm RxCUI and clean name. |
| rx_get_drug_classA | Resolve a drug to its candidate ATC-4 pharmacologic classes (RxClass). |
| rx_find_alternativesA | List the sibling drugs in an ATC-4 pharmacologic class (RxClass members). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: name normalization, class resolution, alternative listing, shortage checking, and health verification. No overlap exists, and the workflow is well-defined.
All tools use the 'rx_' prefix and verb_noun pattern (e.g., check_shortage, find_alternatives). The exception is 'rx_health', which lacks a verb, but it is still clear and follows the overall naming scheme.
With 5 tools, the server is well-scoped for a focused domain. Each tool serves a necessary step in the shortage-checking workflow without redundancy or bloat.
The tools cover the full intended workflow: normalize drug name, get ATC class, find alternatives, check shortage, and verify server health. No obvious gaps for the stated purpose.