惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
Last Week in AI
Last Week in AI
博客园_首页
I
InfoQ
T
Tailwind CSS Blog
爱范儿
爱范儿
雷峰网
雷峰网
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
B
Blog
WordPress大学
WordPress大学
A
About on SuperTechFans
V
Visual Studio Blog
有赞技术团队
有赞技术团队
P
Proofpoint News Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to give Claude Code access to your Apple Health data
Jeff Littell · 2026-06-19 · via DEV Community

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.


The constraint

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.


What health4.ai does

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.


Step-by-step setup

1. Clone the repo

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

2. Set up your Postgres database

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

3. Install the iOS app

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

4. Configure the MCP server

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

5. Add it to Claude Code

{
  "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.


What you can ask

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.


GitHub

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.