Integrations

EHR adapters

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

Synthetic (v0.1 demo)

Connected

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.

    Planned · v0.5
  • MatrixCare

    ResourceMatch + EHR. Second-largest SNF EHR by deployments.

    Planned · v0.5
  • Epic FHIR

    Health-system / hospital adjacency for hospital-to-SNF discharge interoperability.

    Planned · v0.5
  • Synthetic

    Reads from the local Neon DB (this demo). Lives at lib/adapters/pcc/synthetic.ts.

    Active

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.

View interface on GitHub →