Screen Patient for Contraindications
check_contraindicationsScreens a medication against a patient’s age, sex, conditions, and current medications to identify contraindications and drug interactions, returning a pass, flag, or reject verdict.
Instructions
Given a medication and a patient profile (age, sex, conditions, current medications), screens against absolute and relative contraindications and known drug interactions and returns an overall verdict — PASS, FLAG (proceed with caution / address first), or REJECT (do not prescribe) — with the specific triggering findings and clinical notes. PREMIUM tier.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| age | No | Patient age in years. | |
| sex | No | Patient sex (e.g. "male", "female"). | |
| conditions | No | Patient conditions / history (e.g. ["prostate cancer", "hematocrit 55%"]). A comma-separated string is also accepted. | |
| medication | Yes | Medication name, id, or brand/alias to screen. | |
| currentMedications | No | Current medications (e.g. ["warfarin", "nitroglycerin"]). A comma-separated string is also accepted. |