cd /news/developer-tools/how-to-give-claude-code-access-to-yo… Β· home β€Ί topics β€Ί developer-tools β€Ί article
[ARTICLE Β· art-33451] src=dev.to β†— pub= topic=developer-tools verified=true sentiment=Β· neutral

How to give Claude Code access to your Apple Health data

A developer built health4.ai, an open-source iOS app and MCP server that gives Claude Code and other AI agents access to Apple Health data. The app syncs HealthKit data to a user-controlled Postgres database, bypassing Apple's lack of a HealthKit REST API. The MCP server exposes 11 tools for querying health metrics, and the entire system keeps data on the user's own infrastructure.

read4 min views3 publishedJun 19, 2026

Apple has no HealthKit REST API. Claude's native Apple Health connector only works on claude.ai web, not Claude Code. Here's how to fix that.

Apple's privacy design is the core issue. HealthKit data never leaves your device through a server-side API. There's no endpoint you can call from a script, a cloud function, or an AI agent. All HealthKit access goes through an on-device iOS app that the user has explicitly granted permission.

That's actually good for privacy. But it creates a real problem if you want to query your health data from Claude Code, Cursor, or any MCP client running outside the claude.ai web interface.

The existing workarounds have limits. Health Auto Export is a solid app, but its MCP server works over local TCP. Your Claude Code session on a Mac Studio can't reach it if your phone is on a different network, or if you're on a VPN. The built-in Apple Health connector in claude.ai is great for the web UI but doesn't expose anything to Claude Code or any other MCP client.

The only real solution is to build your own sync layer: an iOS app that reads HealthKit and pushes to a database you control, plus an MCP server that Claude can talk to.

That's what health4.ai is.

The architecture is straightforward:

iPhone (HKObserverQuery) β†’ Your Postgres database β†’ FastMCP server β†’ Any AI

The iOS app registers HKObserverQuery

observers for every HealthKit metric type. When Apple Health receives new data (a completed workout, a new HRV reading, a sleep session), the observer fires and queues a sync. BGTaskScheduler

handles periodic background delivery. On first launch, a bulk backfill exports your entire HealthKit history β€” mine was around 5.6 million rows.

Data lands in a simple EAV schema: one row per HKSample

, with metric_type

, value

, unit

, started_at

, ended_at

, source_device

, and a metadata

JSONB column. New metric types never require a schema migration.

The MCP server is a Python FastMCP process running locally. It reads directly from Postgres (your credentials, your database) and exposes 11 tools that any MCP client can call.

You own the data. health4.ai never receives or stores your health data. It flows from your iPhone to your Postgres database β€” you choose the provider.

git clone https://github.com/jefflitt1/health4ai.git
cd health4ai

Pick the backend that fits you and run the schema:

Supabase (free tier works fine):

psql "$DATABASE_URL" < web/public/schema.sql

Neon (serverless Postgres):

psql "$DATABASE_URL" < web/public/schema.sql

Local Docker:

docker run -d --name health4ai-postgres \
  -e POSTGRES_PASSWORD=yourpassword -p 5432:5432 postgres:16
psql "postgresql://postgres:yourpassword@localhost:5432/postgres" \
  < web/public/schema.sql

TestFlight link: coming soon β€” the app is in review. Sign in with your Postgres connection details and tap Start Sync.

cp mcp-server/.env.example mcp-server/.env

Edit mcp-server/.env

:

DATABASE_URL=postgresql://...    # your Postgres connection string
HEALTHKIT_USER_ID=your_user_id   # any string to identify your data

Install dependencies:

cd mcp-server && pip install -r requirements.txt
{
  "mcpServers": {
    "health4ai": {
      "command": "python",
      "args": ["/path/to/health4ai/mcp-server/main.py"],
      "env": {
        "DATABASE_URL": "postgresql://...",
        "HEALTHKIT_USER_ID": "your_user_id"
      }
    }
  }
}

Restart Claude Code. Run /mcp

to confirm. You should see health4ai

with 11 tools listed.

Works with Cursor too β€” same config block in ~/.cursor/mcp.json

.

Fully local with Ollama:

mcphost --model ollama/llama3.2 \
  --mcp-server "health4ai:python /path/to/health4ai/mcp-server/main.py"

Your data and the model both stay on-device. Nothing leaves your machine.

Here are prompts that work well, along with which tool they trigger:

"How did I sleep this week?" β†’ get_sleep

β€” per-night breakdown with Core, Deep, and REM stage durations.

"Is my HRV trending up or down this month?" β†’ get_hrv_trend

β€” daily SDNN averages, 7-day rolling comparison, trend direction.

"Give me a full health summary for the last 14 days." β†’ get_health_summary

β€” steps, HRV, resting HR, sleep, workouts.

"What does yesterday look like?" β†’ get_daily_snapshot

β€” everything recorded that day.

"Is 42ms HRV good or bad for me?" β†’ get_metric_stats

β€” your personal baseline: min/max/mean, percentiles, good/poor-day thresholds.

"Did my sleep improve after I started lifting?" β†’ compare_periods

β€” compare any metric between two date ranges with delta, % change, and a plain-English verdict.

"Show me my resting heart rate trend over the past 2 years." β†’ get_long_term_trend

β€” transparently switches to pre-aggregated monthly buckets beyond 180 days, so it's fast and complete regardless of data volume.

https://github.com/jefflitt1/health4ai β€” MIT licensed. PRs welcome.

If you set it up and run into anything, open an issue. The main thing still pending is the public TestFlight link. Everything else is working.

── more in #developer-tools 4 stories Β· sorted by recency
── more on @apple 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/how-to-give-claude-c…] indexed:0 read:4min 2026-06-19 Β· β€”