loading…
Search for a command to run...
loading…
Enables users to query Apple Health metrics, workouts, and trends from CSV files exported via the Health Auto Export app. It allows MCP clients to analyze healt
Enables users to query Apple Health metrics, workouts, and trends from CSV files exported via the Health Auto Export app. It allows MCP clients to analyze health data such as heart rate, sleep stages, and activity levels directly from local iCloud Drive storage.
An MCP server for Apple Health data. Reads daily health metrics and workouts exported by the Health Auto Export iOS app.
| Tool | Description |
|---|---|
apple_health_daily |
Daily summary: steps, energy, HR, HRV, sleep stages, body comp, workouts |
apple_health_workouts |
Workout sessions for a date (type, duration, HR, calories, distance) |
apple_health_trends |
Multi-day trends for steps, HR, HRV, sleep, weight |
This MCP server reads CSV files produced by Health Auto Export, a third-party iOS app that automatically exports Apple Health data to iCloud Drive. The app runs in the background and syncs new data throughout the day.
~/Library/Mobile Documents/iCloud~com~ifunography~HealthExport/Documents/
Daily Export/ and Workouts/ folders with dated CSV filesgit clone https://github.com/daveremy/apple-health-mcp.git
cd apple-health-mcp
npm install
npm run build
Add to your Claude Code project's .mcp.json:
{
"mcpServers": {
"apple-health": {
"type": "stdio",
"command": "node",
"args": ["/path/to/apple-health-mcp/dist/mcp.js"]
}
}
}
Or register with the Claude CLI:
claude mcp add apple-health --scope project -- node /path/to/apple-health-mcp/dist/mcp.js
If your Health Auto Export saves to a different location, set the environment variable:
{
"env": {
"APPLE_HEALTH_EXPORT_DIR": "/path/to/your/export/directory"
}
}
The server expects the CSV file structure produced by Health Auto Export:
Documents/
Daily Export/
HealthMetrics-YYYY-MM-DD.csv
Workouts/
Workouts-YYYY-MM-DD.csv
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"apple-health-mcp": {
"command": "npx",
"args": []
}
}
}