Screens patients for sepsis using qSOFA, SOFA, and SIRS criteria by pulling vitals and labs from FHIR Observation resources. Evaluates Surviving Sepsis Campaign hour-1 bundle compliance. Use when asked to screen for sepsis, check qSOFA score, SOFA score, SIRS criteria, sepsis risk, or when suspected infection with hemodynamic instability is present.
Use when a clinician needs to calculate sepsis risk scores from vital signs and laboratory data, with bundle compliance assessment.
fhir_read to retrieve Patient demographics (age for baseline risk)fhir_search to pull vital signs (last 24h): temperature (8310-5), heart rate (8867-4), respiratory rate (9279-1), systolic BP (8480-6), SpO2 (2708-6)fhir_search to pull labs: WBC (6690-2), lactate (2524-7), creatinine (2160-0), bilirubin (1975-2), platelets (777-3), PaO2 (2703-7), FiO2 (3150-0)fhir_search to pull active Condition resources for infection source identificationfhir_search to pull active MedicationRequest for vasopressor status and current antibioticsfhir_create to create ClinicalImpression resource documenting the assessmentfhir_search(resourceType="Observation", queryParams="patient=[patient-id]&code=8310-5&_sort=-date&_count=5")
fhir_search(resourceType="Observation", queryParams="patient=[patient-id]&code=2524-7,32693-4,2519-7&_sort=-date&_count=3")
fhir_search(resourceType="MedicationRequest", queryParams="patient=[patient-id]&status=active&code=3628,3616,11149,35208")