Overview
Akita reads Apple Health data to provide sleep analysis, workout tracking, and activity summaries. Data is exported from Apple Health and made available through MCP tools.
Tools
Discover Available Data
health__list_available_metrics — lists all available health metrics with coverage information: what data exists, date ranges, and record counts. Start here to understand what’s available.
Sleep Data
health__get_sleep — detailed sleep sessions for a date range:
- Sleep stages: deep, REM, core
- Sleep duration (hours)
- Time in bed
- All times in UTC
Daily Summary
health__get_recent_summary — aggregated daily summary for the last N days (default 7, max 90):
- Sleep metrics
- Workouts
- Mindful minutes
- Active energy
Typical Usage
# What metrics do I have?
health__list_available_metrics()
# How did I sleep this week?
health__get_sleep(start_date="2026-03-13", end_date="2026-03-20")
# Quick overview of the past week
health__get_recent_summary(days=7)
MCP Tools
See MCP Tools Reference for the full list of health__* tools.