Retrieves and formats a complete patient demographic summary from FHIR Patient, RelatedPerson, and Coverage resources. Use when asked to pull demographics, get patient info, show patient details, who is this patient, emergency contacts, or insurance info. Flags missing critical data elements that may affect care delivery.
Use when a clinician needs a consolidated view of non-clinical patient data including identifiers, contact information, emergency contacts, insurance coverage, preferred language, and advance directive status.
fhir_read to retrieve the Patient resource and extract identifiers, name, DOB, gender, race/ethnicity (US Core extensions), address, telecom, preferred language, and marital statusfhir_search to find RelatedPerson resources linked to the patient for emergency contacts, next of kin, and guarantorsfhir_search to retrieve active Coverage resources for insurance information including plan name, group, subscriber ID, payor, and coverage orderfhir_search to check for advance directives via Consent (category=acd) or DocumentReference (LOINC 64298-3)fhir_read(resourceType="Patient", id="[patient-id]")
fhir_search(resourceType="RelatedPerson", queryParams="patient=[patient-id]")
fhir_search(resourceType="Coverage", queryParams="patient=[patient-id]&status=active")
fhir_search(resourceType="Consent", queryParams="patient=[patient-id]&category=http://terminology.hl7.org/CodeSystem/consentcategorycodes|acd")
name.use = "official" as primary display name; note maiden names separately