health-mcp
Syncs workout data from Hevy, including workouts, exercise templates, and body measurements.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@health-mcpsync my latest Hevy workouts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
health-mcp
A single agent-facing surface over one person's health data, so an AI can cross-reference sources that usually sit in separate apps — training and nutrition today ("did intake track with volume?"), with room to bring in sleep or other metrics later — in service of actually optimizing toward that person's health goals, not just logging numbers.
It's an MCP server, speaking stdio, backed by one SQLite file. Training data is synced in from external sources — Hevy for lifting, Strava for cardio (runs, rides). Daily step counts and Apple Watch-native workout sessions are imported by hand from Apple Health CSV exports — no API for those, just files dropped into chat. Food is logged directly through the agent against a small hand-curated Catalog of Products.
Tools
find_product(query?)— search the Catalog by name/brand; list it all ifqueryis omitted. Always call this beforelog_foodagainst a Catalog item.add_product(...)— add a Product to the Catalog. Macros are per 100g;sourceisverified(off a package label) orestimated.log_food(grams, product_id? | name + macros, at?)— log that a quantity was eaten, either against a Catalog Product or as a one-off (always recorded as estimated).delete_food_entry(id)— remove a Food Log Entry.sync_workouts(full?)— pull new workouts, exercise templates, and body measurements from Hevy. Delta by default;full=Truere-fetches everything and reconciles deletions.sync_activities(full?)— pull new cardio activities (runs, rides) from Strava. Delta by default, but only sees activities whose start date is after the last sync — an edited or back-dated activity needsfull=Trueto be picked up (see PLAN.md "Strava sync"). Requires having runstrava-authonce (below).import_steps(path)— import an Apple Health step-count CSV export from wherever it landed (e.g. attached to a chat message). No API, no cursor — always reprocesses the whole file and upserts by day, so a repeated or overlapping export is harmless. A day with samples from more than one source (phone + watch) is deduplicated by taking the larger source total, not summing them — see PLAN.md "Step import" and ADR-0010.import_workouts(paths)— import Apple Health workout CSV export(s) (one file per workout type — Running, Cycling, Walking, ... — so this is usually several paths at once). Rows sourced from Hevy are dropped, not stored: that training already exists viasync_workouts, and keeping both would double-count it — see PLAN.md "Apple workout import" and ADR-0011.query(sql)— read-only SQL (SELECT/WITHonly) against the whole schema. There are deliberately no narrow read tools (list_workouts,daily_nutrition, etc.) — see ADR-0006.
The domain vocabulary these tools use (Product, Food Log Entry, Macros, Catalog, Verified/Estimated, Day, Workout, Activity, Daily Steps, Apple Workout, Volume) is defined in CONTEXT.md.
Related MCP server: Apple Health AI Bridge MCP Server
Setup
Requires Python 3.13+ and uv.
uv syncConfigure via a .env file in the repo root (or HEALTH_MCP_* env vars):
HEALTH_MCP_DB_PATH=/path/to/health.db # defaults to ~/health/health.db
HEALTH_MCP_HEVY_API_KEY=... # required for sync_workouts / `sync`
HEALTH_MCP_STRAVA_CLIENT_ID=... # from strava.com/settings/api
HEALTH_MCP_STRAVA_CLIENT_SECRET=... # required for sync_activities / `strava-auth`Strava additionally needs a one-time interactive strava-auth (below) before
sync_activities / sync-strava will work — the resulting token pair is stored
separately, not in .env (see ADR-0009).
Strava is built but not yet connected in this deployment — as of 2026-06-01 Strava requires an active paid subscription ($11.99/mo) to register and use an API app, which is why this is paused rather than done. See PLAN.md "Strava setup (when ready)" for the exact steps to pick it back up once that's worth it.
Migrations run automatically on every CLI invocation.
Running
As an MCP server (what Claude Code / Claude Desktop launch):
uv run health-mcp serveThis repo is already registered as a project-scoped MCP server in .mcp.json, so any
Claude Code session opened here loads it automatically.
Other CLI commands:
uv run health-mcp sync # pull new workouts from Hevy (delta)
uv run health-mcp sync --full # re-fetch everything, reconcile deletions
uv run health-mcp normalize # re-parse stored raw workout payloads, no network
uv run health-mcp strava-auth # one-time: connect a Strava account (ADR-0008)
uv run health-mcp sync-strava # pull new activities from Strava (delta)
uv run health-mcp sync-strava --full # re-fetch everything, reconcile deletions
uv run health-mcp import-steps <path> # import an Apple Health step-count CSV export
uv run health-mcp import-workouts <path> [...] # import Apple Health workout CSV export(s)Tests
uv run pytestRoadmap
Hevy (lifting) syncs into the database today, and daily step counts plus Apple
Watch-native workout sessions import from Apple Health CSV exports on request. Strava
(cardio) is fully built alongside them but paused before its first real connection — see
"Setup" above and PLAN.md "Strava setup (when ready)". query can already answer
questions across Hevy, steps, and Apple workouts; Strava joins once connected. See
"Future ideas" in PLAN.md for what's next after that — an Albert Heijn / NEVO
product lookup, a scheduled digest, and a couple of other candidates, in rough order of
likely value.
Design notes
Key decisions and their rationale live in docs/adr/:
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceRead-only MCP server that exposes Apple Health data (steps, workouts, sleep, etc.) from a local SQLite store, allowing AI agents to query health metrics without sending data to hosted services.4Apache 2.0
- AlicenseAqualityAmaintenanceAn MCP server that exposes the Hevy fitness API as 22 tools, enabling AI agents to manage workouts, routines, exercise templates, and body measurements through natural language.2365MIT
- AlicenseNot gradedqualityAmaintenanceAn MCP server that securely syncs and queries your health data from Apple Health, storing it in your own Supabase Postgres database and exposing tools for AI assistants to retrieve weight, calories, macros, and more.25MIT
Related MCP Connectors
Create Hevy routines and analyze your training from chat. Unofficial; BYO Hevy PRO API key.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Private-by-default, local-first memory/context/task orchestrator for MCP apps and agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/danielv27/health-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server