get_mappings_by_rxcui
Retrieve drug identifier mappings for a specific RxNorm concept unique identifier (RxCUI) to access related drug codes and classifications from the FDA DailyMed database.
Instructions
Get mappings for a specific RxCUI
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rxcui | Yes | The RxCUI to get mappings for |
Implementation Reference
- src/mapping-service.ts:134-136 (handler)The handler method that retrieves RxNorm mappings for a given RxCUI from the mapping service.
getMappingsByRxCUI(rxcui: string): RxNormMapping[] { return this.rxcuiToMappings.get(rxcui) || []; } - src/tools.ts:545-547 (registration)The tool registration definition for get_mappings_by_rxcui.
name: "get_mappings_by_rxcui", description: "Get mappings for a specific RxCUI", inputSchema: {