Open-source healthcare integration engine — route, transform, and validate messages across many formats and connection types
Project description
MessageFoundry
MessageFoundry is an open-source integration engine for healthcare. It connects clinical and business systems — routing, transforming, and validating messages across many formats (HL7 v2, JSON, XML/SOAP, X12, database records) and connection types (MLLP, TCP, HTTP/REST, SOAP, database, files, SFTP/FTP). Configure it with guided tooling or extend it in Python; it runs on SQLite or PostgreSQL with authentication, RBAC, audit, and encryption-at-rest built in.
Python import package:
messagefoundry. Built with hl7apy + python-hl7 (HL7 parsing/ validation), FastAPI (engine API), and PySide6 (admin console).
What it is
A modern alternative to engines like Mirth and Corepoint. Messages flow through a graph you wire by name: an inbound Connection hands off to a Router, which forwards to one or more Handlers (filter → transform), which deliver to outbound Connections — all backed by durable queuing, automatic retries, and replay. Build that graph with guided wizards, or in Python for full control; either way the configuration is version-controlled and yours.
Architecture
Engine-as-library + localhost API. The engine is an importable Python package. The PySide6 console talks to it over a localhost HTTP + WebSocket API — the same way whether the engine runs in-process, as a local daemon, or (later) on a remote host. No hand-rolled IPC; the deployment split is a config choice, not an architectural fork.
┌────────────────────┐ HTTP + WebSocket ┌────────────────────┐
│ PySide6 console │ ──────(localhost)─────────▶ │ engine runtime │
│ (design / monitor)│ │ (asyncio core) │
└────────────────────┘ └─────────┬──────────┘
│
config (Python modules, git-friendly) ◀───┤
message store / queue (SQLite WAL) ◀─────────┘
Key decisions
- Reliable by default. A durable, transactional pipeline gives at-least-once delivery, automatic retries, replay, and dead-lettering — no separate message broker to run.
- Async core. asyncio with per-connection workers for listeners, pollers, retries.
- Tolerant parsing first.
python-hl7for fast routing/peek;hl7apyfor deep, version-aware validation and profiles on demand (real-world HL7 is often non-conformant). - Configure visually or in code. Author connections and routes with guided wizards, or in
Python (
inbound/outbound/@router/@handler) for full control — always version-controlled. The database holds runtime state and messages only, never configuration. - PHI is first-class. Authentication, RBAC, a user-attributed audit log of message views/replays, and encryption-at-rest for message bodies (AES-256-GCM) are built; log redaction and MLLPS/TLS are on the roadmap. See docs/PHI.md for the built-vs-planned data-protection map.
Roadmap
Phase 1 — minimum reliable engine
- Connection/Router/Handler model + config-module loader
- Durable message store / queue (SQLite WAL, outbox pattern)
- Parse / validate (tolerant peek + opt-in strict validation)
- MLLP source + destination (correct
0x0B … 0x1C 0x0Dframing, ACK/NACK) - File source + destination
- Pipeline: source → parse/validate/filter/transform → outbox → per-dest workers, with retry/backoff, dead-letter, and replay
- localhost API (connections start/stop, message track/search/detail, replay, stats,
live WebSocket feed) +
python -m messagefoundry serve - PySide6 console: connection dashboard, message browser, HL7 parse-tree viewer,
delivery/audit trail, replay (
python -m messagefoundry.console)
Phase 1 complete.
Since Phase 1 — now built
- Staged pipeline (ingress → routed → outbound): at-least-once handoff, dead-letter, replay
- Authentication, RBAC, user-attributed audit log, at-rest body encryption (AES-256-GCM)
- PostgreSQL store backend (production, single-node)
- Microsoft SQL Server store backend (production, single-node)
- REST, SOAP, and Database destinations
- Database poll source
- Reference / lookup tables (
code_set) for enrichment - Alerting — logging sink + webhook/email notifier
- Connections-as-data (
connections.toml) editable by hand or a VS Code GUI - Active-passive high availability — self-fencing leadership lease, leader-gated graph, and a failover-load test harness (kill-the-primary-under-load), on both PostgreSQL and SQL Server
- Native transport TLS — in-process API TLS (HTTPS/WSS) and MLLP-over-TLS, with an off-loopback bind guard and a certificate-expiry monitor
- Published throughput + active-passive failover baseline (docs/benchmarks/TUNING-BASELINE.md)
Later — horizontal active-active scale-out (the experimental multi-node cluster path); higher-throughput delivery (a pooled/persistent MLLP connector); a read-only component SDK (fork-to-customize); a de-identification framework; MFA and off-box log shipping. See docs/EARLY-ADOPTER-GUIDE.md §2 for the current built-vs-experimental map.
Installing & rolling out
Install the engine as a pinned dependency, then scaffold your own config repo (ADR 0017):
pip install "messagefoundry==0.1.0" # pin the exact engine version (core runtime)
messagefoundry init ./my-config-repo # scaffold a standalone config repo
cd ./my-config-repo
messagefoundry serve --config config --env dev
Early access: until the first PyPI release is cut,
pip install messagefoundry==0.1.0will not resolve from public PyPI — install the wheel from the project's GitHub Release assets or a private index in the meantime. (Engine developers install from a checkout instead — see Development.)
Piloting MessageFoundry? The Early-Adopter Installation & Rollout Guide takes you from first install through a staged, go/no-go-gated path to full production (Lab → Shadow/Parallel → Limited → Full). It leads with an honest built-vs-experimental maturity map and covers prerequisites, install, security/PHI hardening, reliability configuration, validation, load testing, backup/DR, day-2 operations, and upgrade/rollback.
Development
Working on the engine itself? Install from a source checkout — editable, with the dev tools. (This is the contributor path; deployments install the pinned wheel, above.)
python -m venv .venv && . .venv/Scripts/activate # Windows PowerShell: .venv\Scripts\Activate.ps1
pip install -e ".[dev]"
pytest
Run the engine + localhost API (loads the bundled sample config, which ships only in a checkout):
python -m messagefoundry serve --config samples/config --db messagefoundry.db --env dev
# API on http://127.0.0.1:8765 — GET /connections, /messages, /stats, WS /ws/stats
Then open the admin console (needs the console extra: pip install -e ".[console]"):
python -m messagefoundry.console --url http://127.0.0.1:8765
VS Code extension & test harness
- VS Code extension (
ide/) — author and test interfaces in your editor: a New Route Wizard, validate-on-save, a Test Bench (dry-run.hl7files with before/after diffs), Stage → Promote to a running engine, and an HL7-aware@messagefoundrychat participant. Open theide/folder in VS Code and press F5, or see ide/README.md. - Test harness — a standalone PySide6 send/receive MLLP tool for exercising the engine with
synthetic, PHI-free traffic:
python -m harness.
License
MessageFoundry is licensed under the GNU Affero General Public License v3.0 or later
(AGPL-3.0-or-later) — see LICENSE. Running a modified version as a network service
triggers the AGPL's §13 source-offer obligation. A separately-licensed commercial edition may be
available from the maintainer.
Contributing
Contributions are welcome — see CONTRIBUTING.md, our Code of Conduct, and how the project is governed in GOVERNANCE.md. A signed Contributor License Agreement is required before a pull request can be merged.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file messagefoundry-0.1.0rc1.tar.gz.
File metadata
- Download URL: messagefoundry-0.1.0rc1.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e202a7623a2cd1883d957d28276a6bc1503dab1898b030cf16467c56488f88ca
|
|
| MD5 |
57074fcc429bca3721e3e6b5f9514360
|
|
| BLAKE2b-256 |
a1cdd6b40b8c5641823a8197348d49a87afc744186b546d1491f925cee7b4c04
|
Provenance
The following attestation bundles were made for messagefoundry-0.1.0rc1.tar.gz:
Publisher:
release.yml on wshallwshall/MessageFoundry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
messagefoundry-0.1.0rc1.tar.gz -
Subject digest:
e202a7623a2cd1883d957d28276a6bc1503dab1898b030cf16467c56488f88ca - Sigstore transparency entry: 1843303886
- Sigstore integration time:
-
Permalink:
wshallwshall/MessageFoundry@3c2414724068cefb1f8531d6c0096331ca5c817f -
Branch / Tag:
refs/tags/v0.1.0-rc1 - Owner: https://github.com/wshallwshall
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3c2414724068cefb1f8531d6c0096331ca5c817f -
Trigger Event:
push
-
Statement type:
File details
Details for the file messagefoundry-0.1.0rc1-py3-none-any.whl.
File metadata
- Download URL: messagefoundry-0.1.0rc1-py3-none-any.whl
- Upload date:
- Size: 665.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d57e12de408f1c814cb128add27cc47146a6fe5e5f6373d51fffa4a5e481f1c
|
|
| MD5 |
bf5d27307c40f25ee2e2ff0b71b0d6af
|
|
| BLAKE2b-256 |
a3b9e41c74b9bc7d5d553288c583969a6bfd90cf1f7bc617982047c873334a5f
|
Provenance
The following attestation bundles were made for messagefoundry-0.1.0rc1-py3-none-any.whl:
Publisher:
release.yml on wshallwshall/MessageFoundry
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
messagefoundry-0.1.0rc1-py3-none-any.whl -
Subject digest:
2d57e12de408f1c814cb128add27cc47146a6fe5e5f6373d51fffa4a5e481f1c - Sigstore transparency entry: 1843303930
- Sigstore integration time:
-
Permalink:
wshallwshall/MessageFoundry@3c2414724068cefb1f8531d6c0096331ca5c817f -
Branch / Tag:
refs/tags/v0.1.0-rc1 - Owner: https://github.com/wshallwshall
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@3c2414724068cefb1f8531d6c0096331ca5c817f -
Trigger Event:
push
-
Statement type: