get_pharmacologic_class_mappings_for_setid
Retrieve pharmacologic class mappings for a specific SET ID from the FDA DailyMed database to identify drug classifications and relationships.
Instructions
Get pharmacologic class mappings for a specific SET ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| setId | Yes | The SET ID to get pharmacologic class mappings for |
Implementation Reference
- src/mapping-service.ts:120-122 (handler)The implementation of the logic to retrieve pharmacologic class mappings by SPL SET ID.
getPharmacologicClassMappings(splSetId: string): PharmacologicClassMapping[] { return this.pharmacologicClassMappings.get(splSetId) || []; } - src/tools.ts:531-532 (registration)Tool registration for get_pharmacologic_class_mappings_for_setid.
name: "get_pharmacologic_class_mappings_for_setid", description: "Get pharmacologic class mappings for a specific SET ID",