ResMed-Data-MCP
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ResMed-Data-MCPshow my AHI trend for the last 30 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ResMed-Data-MCP
Archives raw data from a ResMed AirSense CPAP's SD card — read over Wi-Fi via a Toshiba FlashAir card — into a local SQLite database on a Mac Mini, and serves it read-only to any MCP client (Claude, Codex, Grok, etc.) over the LAN via Streamable HTTP.
This is a personal quantified-self data plane, not a clinical tool: it archives every field the device reports (AHI, leak rate, pressure, usage hours, and everything else in the nightly summary, plus raw signal detail as it becomes available) without computing or interpreting anything. Synthesis — trends, "how did I sleep", correlations — is left to whatever AI client queries it.
How it works
The AirSense writes to its SD card in the EDF
format: STR.edf is a rolling ~365-day nightly summary (one data record per
night, one signal per column — AHI, leak, pressure, usage minutes, etc.),
and DATALOG/<YYYYMMDD>/ holds per-night detail files at higher resolution
once the device has flushed them. A generic EDF/EDF+ parser
(src/edf/parse.ts) reads both without any ResMed-specific
field list — it just reads whatever signals the header declares, so it also
works on future firmware and other ResMed models without changes.
Related MCP server: Apple Health AI Bridge MCP Server
Architecture
Process | Role |
Indexer ( | Always-on host. Polls the FlashAir on an interval (default 5m), downloads STR.edf and any new/changed DATALOG files, parses them, and writes to SQLite. |
MCP server ( | Always-on read-only MCP server over Streamable HTTP. Opens the same SQLite file read-only (WAL mode lets it read while the indexer writes). |
Both run as separate LaunchAgents (see examples/) so a slow FlashAir sync
never blocks queries and a client bug never touches the data. The MCP server
listens on 0.0.0.0:8420 by default, so it's reachable identically whether
a client is on the same Mac or elsewhere on the LAN — every client just
points at http://<host>:8420/mcp.
Data model
nightly_summary— one row per calendar night, one column per signal STR.edf reports (columns are discovered from the device automatically, not hardcoded — soAHI,Leak_95,Duration,S_C_Press, etc. all show up as real, queryable REAL columns). This is the ergonomic table for "how did I sleep" questions.edf_signals/edf_signal_records— the fully generic archive: every signal, from every file ever seen (STR.edf and every DATALOG detail file), with raw digital samples preserved as-is plus enough calibration metadata to decode them. This is what "as much raw data as possible" means in practice —nightly_summaryis a convenience view over a subset of it.source_files,sync_runs,devices— provenance and operational history: what file came from where, when, and whether syncing is healthy.
EDF+ annotation signals (event timestamps, if the device ever writes them) are stored as raw undecoded bytes for now — see Known limitations.
No vector database: this data is fully structured and numeric (nightly metrics, calibrated signal samples), which SQL aggregation handles better than similarity search. If a future signal turns out to carry free text worth searching semantically, that's a reason to reconsider, not a default.
MCP tools
Tool | Purpose |
| Nightly summary rows in a date range, newest first. |
| Full summary row for one date. |
| Time series + min/max/avg for one |
| Discover every raw signal label across all ingested files. |
| Decoded raw samples for one signal in one file. |
| Arbitrary read-only SELECT against the full schema. |
| Last sync run, device info, row counts — how fresh is this. |
The connection backing the MCP server is opened SQLite-read-only, so
query_raw can't write regardless of what SQL text it's given — that's
enforced by the database, not just by string validation.
Install (from source — not on npm yet)
git clone https://github.com/sfls1397/ResMed-Data-MCP.git
cd ResMed-Data-MCP
npm install # runs `tsc` via the prepare scriptRequires Node.js 22.5+ (uses the built-in node:sqlite module — no
native dependencies, no npm rebuild across machines/architectures).
Configure
Copy examples/config.json.example to ~/.resmed-data-mcp/config.json and
set flashAirBaseUrl to your FlashAir's address (find it with your router's
DHCP client list, or the FlashAir's own config page). Everything else has a
sane default:
Key | Default | Notes |
|
| The FlashAir's HTTP address |
|
| Clamped to 30s–1h |
|
| Bind address for the MCP server |
|
|
Env vars override the file: RESMED_DATA_FLASHAIR_URL,
RESMED_DATA_POLL_INTERVAL, RESMED_DATA_SERVER_HOST,
RESMED_DATA_SERVER_PORT, RESMED_DATA_DB_PATH. RESMED_DATA_HOME
relocates the whole ~/.resmed-data-mcp/ directory (test/dev only).
Backfill once, then install the LaunchAgents
node dist/cli.js backfill # one-shot: pulls everything currently on the cardCopy examples/com.resmed-data-mcp.indexer.plist and
examples/com.resmed-data-mcp.server.plist into ~/Library/LaunchAgents/,
replacing REPLACE_ME_WITH_REPO_PATH, REPLACE_ME_WITH_NODE_BIN_DIR, and
REPLACE_ME (your username) with real values, then:
launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/com.resmed-data-mcp.indexer.plist
launchctl bootstrap gui/$(id -u) ~/Library/LaunchAgents/com.resmed-data-mcp.server.plistPoint clients at it
See examples/mcp-client.json. Any MCP client that supports an HTTP server
entry (Claude, Codex, Grok Bot, ...) connects the same way whether it runs on
the Mac Mini itself or another machine on the same LAN:
{ "mcpServers": { "resmed-data": { "url": "http://<host>:8420/mcp" } } }Paths
All under ~/.resmed-data-mcp/ (config cannot override this directory):
Path | Purpose |
| Settings (see above) |
| The database (WAL mode) |
| Sync-cycle lock, so an overlapping poll never runs concurrently with itself |
Security
No authentication — this is meant for a trusted home LAN only. Don't expose port 8420 to the internet (no port forwarding, no tunnel). The MCP server's database connection is read-only at the SQLite level, so even a buggy or malicious client can't write through it.
Known limitations
EDF+ annotation signals (the "EDF Annotations" channel, used for event timestamps in some DATALOG detail files) are archived as raw bytes but not decoded into structured events yet — there was no real annotation-bearing file available to validate a decoder against when this was built. Decoding can be added once DATALOG detail files with real annotations exist on a card.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Read-only MCP server for The Quiet Protocol's engines, benchmarks, proof, and business data.
Multi-tenant hosted MCP server for Oura Ring — 21 read-only tools, OAuth per user.
Read-only MCP server for Sandwich aging-parent care resources and cost data.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA local MCP server providing read-only access to WHOOP fitness data via direct OAuth, with a local SQLite cache for offline queries.51 PyPIMIT
- AlicenseNot gradedqualityAmaintenanceRead-only MCP server that exposes Apple Health data (steps, workouts, sleep, etc.) from a local SQLite store, allowing AI agents to query health metrics without sending data to hosted services.7Apache 2.0
- AlicenseAqualityBmaintenanceA read-only MCP server that allows AI assistants to analyze CPAP/BiPAP therapy data from OSCAR by querying its local SQLite database, with privacy protections and tools for summarizing and investigating sleep therapy metrics.11GPL 3.0
- AlicenseNot gradedqualityCmaintenanceRead-only MCP server that exposes Garmin Connect health data from a local SQLite database to AI assistants, enabling queries for recent days, sleep, weekly trends, and a guarded SQL query surface.MIT