Integrations
Kareplexity reads through a small, EHR-agnostic adapter interface so the application layer never touches a vendor wire format directly. v0.1 ships with the synthetic adapter for demo purposes; v0.5+ adds the live PCC, MatrixCare, and Epic-FHIR adapters.
Active adapter
Facilities
5
Residents
97
Last synced
6/20/2026, 8:41:22 PM
Synthetic adapter — reads from local Neon DB. Replace with `LivePccAdapter` for production.
Available adapters
PointClickCare
The largest US LTPAC EHR. Adapter wraps the Clinical Advisory Connector v2 REST API.
MatrixCare
ResourceMatch + EHR. Second-largest SNF EHR by deployments.
Epic FHIR
Health-system / hospital adjacency for hospital-to-SNF discharge interoperability.
Synthetic
Reads from the local Neon DB (this demo). Lives at lib/adapters/pcc/synthetic.ts.
Adapter contract
Every adapter implements the same PccAdapter interface (defined in lib/adapters/pcc/types.ts): listFacilities, listResidents, getResidentDemographics, listDiagnoses, listMdsAssessments, listClinicalNotes, listTherapyMinutes. Application code is adapter-agnostic — switching a tenant from synthetic to PCC is a single dependency injection.