Evaluates preoperative laboratory readiness by checking required labs based on procedure type, patient age, comorbidities, and ASA classification. Identifies missing or expired labs and flags abnormal results that may delay surgery. Use when asked for pre-op labs, surgical clearance labs, preoperative lab checklist, or readiness for surgery assessment.
Use when a clinician needs to verify that all required preoperative laboratory tests have been completed, are within acceptable timeframes, and have acceptable results for surgical clearance.
fhir_read to retrieve Patient demographics (age, gender)fhir_search to pull active Condition resources for comorbidity-based lab requirementsfhir_search to pull active MedicationRequest resources for medication-based lab requirements (e.g., anticoagulants require coag studies, digoxin requires level and electrolytes)fhir_search to pull scheduled Procedure or ServiceRequest for the planned surgery to determine procedure typefhir_search to pull recent Observation resources (laboratory) and check if required labs are present and within acceptable timeframe (typically 30 days, 7 days for coags on anticoagulants)fhir_search(resourceType="Observation", queryParams="patient=[patient-id]&category=laboratory&date=ge[30-days-ago]&_sort=-date&_count=200")
fhir_search(resourceType="ServiceRequest", queryParams="patient=[patient-id]&status=active&intent=order&category=387713003")