family-health-mcp

family-health-mcp

MCP server that lets a hosted LLM securely read a local family health archive and deposit structured reports into an inbox, with a read-biased tool surface and strict path/token enforcement.

Category
Visit Server

README

<div align="center">

๐Ÿฉบ family-health-mcp

The model can read everything it is allowed to see โ€” and write exactly one thing.

An MCP server that connects a hosted LLM client to a local, file-based health archive, without ever handing the model write access to the archive itself.

<br/>

Python MCP FastMCP CI License Status

</div>


Why

My family's health records live in plain files on one machine โ€” an archive that a local agent and I curate together, and that part already worked well. The problem was everywhere else โ€” at a clinic, on a phone, away from the machine holding the files. I could already reach it by SSH, so capability was never the issue; the issue was that every conversation had to start with connecting, and that small ritual is enough to make you skip it.

So instead of a better way to reach the archive, put the archive inside the app that is already open. Which leaves one question worth answering carefully: how much authority should a hosted model have over medical records?


Architecture

flowchart TB
    C["๐Ÿ’ฌ <b>ChatGPT</b><br/><i>developer-mode MCP client</i>"]
    T["โ˜๏ธ <b>Cloudflare Tunnel</b><br/><i>outbound only ยท no open ports</i>"]

    subgraph SRV["๐Ÿ–ฅ๏ธ &nbsp;this server &nbsp;ยท&nbsp; 127.0.0.1:8787"]
        direction TB
        G1["๐Ÿ”‘ <b>โ‘  random path</b> &nbsp;/mcp-&lt;token&gt;"]
        G2["๐Ÿ›ก๏ธ <b>โ‘ก bearer token</b> &nbsp;constant-time compare"]
        G3["๐Ÿงฐ <b>โ‘ข tool surface</b> &nbsp;3 read ยท 1 write"]
        G1 --> G2 --> G3
    end

    subgraph ARC["๐Ÿ“ &nbsp;health archive &nbsp;ยท&nbsp; plain files"]
        direction TB
        REC["๐Ÿ“š <b>structured record</b><br/>history ยท medication ยท timeline ยท measurements"]
        INB["๐Ÿ“ฅ <b>inbox</b><br/><i>the only writable path</i>"]
    end

    LOC["๐Ÿ  <b>local agent</b><br/><i>full read + write, under review</i>"]

    C -- HTTPS --> T --> G1
    G3 -- "read" --> REC
    G3 -- "create only" --> INB
    INB -. "reviewed &amp; filed" .-> REC
    LOC --> REC

    style SRV fill:#f6f8fa,stroke:#8b949e
    style ARC fill:#fff8e6,stroke:#d4a72c
    style INB fill:#ffeaa7,stroke:#d4a72c
    style C fill:#e8f0fe,stroke:#4285f4
    style LOC fill:#e6f7ed,stroke:#2da44e

The hosted model collects; the local side archives. It reads what it is allowed to see and deposits exactly one kind of thing โ€” a structured report โ€” into an inbox. Everything that changes the shape of the archive happens locally, under review.


The tool surface is the security boundary

Tool Access What it can do
list_dir ๐ŸŸข read List a directory inside the archive
read_file ๐ŸŸข read Read one text file; binaries return metadata only
search ๐ŸŸข read Full-text search across the archive
save_report ๐ŸŸก write Create one new file in the caller's own inbox

No delete, no rename, no move, and nothing that writes to the structured record โ€” history, medication lists and measurement series are unreachable from the remote end.

And the report contract is enforced in code, not requested in the prompt. A report missing any of its six required sections fails the tool call:

missing = [s for s in REPORT_SECTIONS if s not in content]
if missing:
    raise ValueError(...)          # -> "report is missing required sections: ..."

The six sections: Summary, User's own words, Transcribed documents, Advice given, Self-measured values, Hand-over to the local side. The one that carries the most weight is the verbatim one โ€” because the paraphrase is where detail silently disappears.

Every rule in this section is pinned by tests/: the suite starts the real HTTP server over a throwaway archive and attacks it through the same three gates a client passes โ€” wrong path, wrong token, ../ traversal, another member's files, a report with a section missing.

[!TIP] The remote model once proposed five additional tools for itself. All five were declined: each one moved a decision from the reviewed local side to the unreviewed remote side.


<details> <summary><b>Security model</b></summary>

<br/>

Three independent layers, all of which must pass:

  1. A long random path โ€” the endpoint is mounted at /mcp-<path_token>, and the URL alone is unguessable.
  2. A bearer token โ€” compared with hmac.compare_digest, resolving to an identity attached to the request.
  3. A small, read-biased tool surface โ€” plus scope checks on resolved paths, so ../ cannot escape:
p = (ARCHIVE / rel).resolve()
if not p.is_relative_to(ARCHIVE):
    raise ValueError(...)          # -> "path escapes the archive"

Each bearer token maps to {member, scope}: a self token reaches only its own member directory, all is unrestricted. Adding someone is one line and a restart; revoking is deleting that line.

The host exposes no inbound ports โ€” the tunnel dials out. Path token and bearer token live in separate files so either can be rotated alone.

โš ๏ธ Known limitation. Static bearer tokens are not part of the MCP authorization spec, which expects OAuth. This works because the client accepts a static access token; if that changes, this is the piece to replace.

</details>

<details> <summary><b>The archive</b></summary>

<br/>

The whole system rests on one choice: the archive is a directory, not a database. Every layer above it is replaceable, because none of them owns the data.

health-archive/
โ”œโ”€โ”€ docs/                        shared rules and operating procedures
โ””โ”€โ”€ members/<name>/
    โ”œโ”€โ”€ allergies-medication.md  safety-critical โ€” read before any advice
    โ”œโ”€โ”€ history.md               entries tagged active / resolved / ruled-out
    โ”œโ”€โ”€ follow-ups.md            due dates and questions for the next visit
    โ”œโ”€โ”€ index.md                 timeline โ€” the index into everything below
    โ”œโ”€โ”€ originals/YYYY/          scans, PDFs, photos โ€” never edited, never deleted
    โ”œโ”€โ”€ notes/YYYY/              narrative notes derived from those originals
    โ”œโ”€โ”€ measurements/*.csv       self-measurement series
    โ””โ”€โ”€ inbox/                   ๐Ÿ“ฅ the only path this server can write to

Originals are never modified, so everything else can be rebuilt from them; the structured files are a projection, not the source of truth, which makes a bad write recoverable rather than fatal. Files are named by report date, not filing date, so the timeline stays true when a document arrives late.

<sub>Directory names and section headings are part of the machine-checked contract, so the code ships them in English; INBOX_DIRNAME renames the write path for a localized archive (the reference deployment runs a Chinese one). Report content follows the language of the conversation.</sub>

</details>

<details> <summary><b>What is in the repository</b></summary>

<br/>

Piece Role
server.py the whole server โ€” four tools, scope checks, bearer middleware
tests/ the security model, pinned end-to-end: the three gates, scope isolation, the report contract
prompts/ the role prompt pasted into the client โ€” the server decides what the model can do, this file says what it should do
deploy/ example launchd and Cloudflare Tunnel configuration for the always-on setup
.env.example ยท tokens.example.json configuration templates โ€” nothing secret is committed

The prompt file is part of the system on purpose: authority lives in code, behaviour lives in the prompt, and keeping the prompt in the repo is what keeps the two in sync when a tool contract changes.

</details>

<details> <summary><b>Setup</b></summary>

<br/>

git clone https://github.com/kevinave/family-health-mcp.git
cd family-health-mcp
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt

cp .env.example .env                     # then set ARCHIVE_PATH
cp tokens.example.json tokens.json       # then generate real tokens
python3 -c "import secrets; print(secrets.token_hex(24))" > .path_token

set -a; source .env; set +a
python3 server.py

Generate one token per person with secrets.token_hex(24) and add it to tokens.json as "<token>": {"member": "alice", "scope": "self"}. Each member needs members/<name>/ to exist before save_report will accept anything for them.

Expose the server through a tunnel (it binds 127.0.0.1:8787 by default; HOST and PORT are environment variables) and add the URL as a developer-mode MCP connector: https://<your-host>/mcp-<path_token>, auth = access token, scheme = bearer. deploy/ has example launchd and cloudflared configuration.

Finally, paste prompts/chatgpt-project-instructions.md into the client's project instructions โ€” that is the behavioural half of the system.

The test suite needs none of the above โ€” no archive, no tokens, it builds its own:

pip install -r requirements-dev.txt && pytest

</details>

<details> <summary><b>Notes from operation</b></summary>

<br/>

read_file deadlocked while list_dir and search looked fine. The archive lives in a cloud-synced folder; under disk pressure the OS had evicted files to dataless placeholders, and reading one synchronously inside a single-threaded event loop deadlocked. What made it look like one broken tool was search's own except OSError: continue, which swallowed the identical error. The fix belonged in the storage layer, not in the server.

After renaming a tool, the unrenamed ones kept working. Client-side tool lists are cached. Any change to the tool set now ends with: refresh the connector, then start a new conversation.

</details>


Scope

A personal system published as a reference implementation, not a product. It assumes one trusted operator and an archive that fits on a single machine.

[!IMPORTANT] Not medical software, and it gives no medical advice. The assistant's role here is to record what was said and surface what is already in the archive. Diagnosis is not one of its tools.

<div align="center"> <br/>

MIT ยฉ kevinave

</div>

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured