The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Whoop MCP listing page.
⚡ One-command install with Delx Wellness for Hermes:
npx -y delx-wellness-hermes setup— preconfigures this connector and the full Delx Wellness stack in a dedicated Hermes profile.Or wire it standalone into Claude Desktop / Cursor / ChatGPT Desktop — see the install section below. Runnable examples live in the Delx Wellness hub.
Public proof: WHOOP MCP is tracked in the Delx Open Source Growth Snapshot alongside downloads, stars and next-action priorities. If it saves you OAuth and MCP setup time, star this repo so other recovery-focused agent builders can find it faster.
First useful prompt:
Use whoop_connection_status, then whoop_daily_summary, then give me a 5-line operating brief for today.
Local-first MCP server that connects AI agents to your WHOOP recovery, sleep, strain and HRV data.
Unofficial project. Not affiliated with, endorsed by or supported by WHOOP, Inc. WHOOP is a trademark of its respective owner. Use this only with your own WHOOP account and in line with WHOOP's Developer Terms.
Built by David Mosiah for people who use Claude, Cursor, Hermes, OpenClaw or other MCP-compatible agents to think about training, sleep and recovery — without copy-pasting numbers from the WHOOP app.
Part of Delx Wellness, a registry of local-first wellness MCP connectors.
WHOOP MCP Unofficial builds on prior WHOOP MCP groundwork by
Shashank Mishra, including the
OAuth/WHOOP API direction and the earlier MIT-licensed
whoop-ai-mcp package
(source). This project
extends that foundation with local-first setup, privacy audits, dual transport,
agent manifests, summaries, caching, registry metadata and Delx Wellness hub
integration.
If this connector helps your agent workflow, please star the repo. Stars make the project easier for other AI builders to discover and help Delx keep shipping local-first wellness infrastructure.
WHOOP gives you rich physiology — recovery score, HRV, sleep stages, strain — but it lives behind an OAuth API and a closed app. Bringing it into your AI agent today means writing the OAuth dance yourself, storing tokens safely, normalizing responses and handling pagination.
This package does all of that locally, exposes WHOOP through the Model Context Protocol, and lets any MCP-compatible agent read your WHOOP context with one config snippet. Tokens never leave your machine.
You'll need a WHOOP Developer app (create one here) with redirect URI http://127.0.0.1:3000/callback.
Then add this to your MCP client config:
For Claude Desktop, run setup --client claude and the snippet is written for you.
No WHOOP account yet? Call whoop_demo — it returns realistic synthetic recovery, sleep and strain payloads (tagged is_demo: true) so your agent learns the data contract before any OAuth. Just ask:
Default (markdown) output:
With response_format=json you get the full shape the live tools return:
The records array is trimmed to its first entry here; the live tool returns all
three, each with the same keys. records[].score is the untouched WHOOP object,
not a number — a parser that reads it as a scalar silently gets undefined.
Once you finish OAuth setup below, whoop_daily_summary, whoop_wellness_context and whoop_list_recoveries return this same shape with your live WHOOP data.
After OAuth is connected, generate a privacy-sanitized transcript for README demos, issue updates or agent evals:
demo-capture runs the same readiness path an agent should use:
whoop_connection_status shape first, then whoop_daily_summary, then a short
recovery-aware prompt. It fails closed when setup is incomplete and the
sanitizer blocks OAuth secrets, local token paths, raw payloads, exact recovery
numbers and exact sleep details. The committed
redaction contract is a
fixture-only sample; real captures should be reviewed before publishing.
Three things to ask first:
This package uses the official WHOOP OAuth API (v2). It does not access raw device sensor streams.
| Data | Available | Notes |
|---|---|---|
| Recovery score, HRV, RHR, SpO2, skin temp | ✓ | When WHOOP returns a scored recovery |
| Sleep sessions + stages + performance | ✓ | All scored sleep records |
| Cycles + day strain + kilojoules | ✓ | Physiological cycles |
| Workouts + sport + heart-rate zones | ✓ | All recorded workouts |
| Profile + body measurements | ✓ | Height, weight, max HR |
| Continuous heart-rate / device telemetry | — | Not exposed by WHOOP's public API |
| Live BLE heart-rate listening | — | This package is not a Bluetooth listener |
When this README says raw, it means the upstream WHOOP API JSON for a supported endpoint — not raw sensor samples.
Start with these:
whoop_demo — realistic synthetic recovery/sleep/strain payloads, no OAuth needed (see See it before you connect)whoop_connection_status — verify local setup before calling WHOOPwhoop_data_inventory — inventory supported data domains, scopes, privacy modes and recommended first calls without calling WHOOP APIs.whoop_daily_summary — readiness, sleep, load and action candidates for todaywhoop_weekly_summary — scorecard, comparison vs prior week, next-week planAuth & diagnostics
whoop_capabilities, whoop_agent_manifest, whoop_privacy_audit, whoop_cache_statuswhoop_get_auth_url, whoop_exchange_code, whoop_revoke_accessProfile
whoop_get_profile, whoop_get_body_measurementsCollections (paginated, with start/end filters and privacy-mode override)
whoop_list_recoveries, whoop_list_sleeps, whoop_list_cycles, whoop_list_workoutsCommon collection params: start, end, limit (max 25), next_token, all_pages, max_pages, response_format (markdown/json), privacy_mode (summary/structured/raw).
start and end remain exact timezone-aware ISO date-times at the WHOOP boundary. Invalid or reversed ranges fail before a network request.
Single records by id
whoop_get_cycle, whoop_get_sleep, whoop_get_workoutwhoop_get_cycle_sleep, whoop_get_cycle_recoverywhoop_daily_performance_coach — practical daily plan from today's signalswhoop_weekly_training_review — week comparison + next-week planwhoop_sleep_recovery_investigator — investigate sleep ↔ recovery patternsEach accepts timezone (IANA, default UTC).
whoop://capabilitieswhoop://summary/daily, whoop://summary/weeklywhoop://latest/recovery, whoop://latest/sleep, whoop://latest/cycle~/.whoop-mcp/tokens.json with 0600 permissions and are never returned by tools.whoop_revoke_access is the only destructive tool — it deletes local tokens and revokes the grant.WHOOP_PRIVACY_MODE defaults to structured. Raw WHOOP API payloads are opt-in via raw mode or per-call override.demo-capture redacts demo transcripts before writing anything intended for docs or issues.setup writes most of these into ~/.whoop-mcp/config.json (0600). Manual env override is supported:
After Hermes config changes, use /reload-mcp or hermes mcp test whoop. Don't restart the gateway for normal data access.
If browser OAuth has to happen on a different machine than Hermes, run auth locally and copy ~/.whoop-mcp/tokens.json to the server with chmod 600.
http://127.0.0.1:3000/callbackDefault OAuth scopes:
Test with MCP Inspector:
Default is stdio. Optional Streamable HTTP — no session id, JSON responses, loopback only:
Env: WHOOP_MCP_HOST, WHOOP_MCP_PORT, WHOOP_MCP_TRANSPORT=http.
The full Delx Wellness connector library:
| Provider | Package | Repo |
|---|---|---|
| WHOOP | whoop-mcp-unofficial | whoop-mcp |
| Oura | oura-mcp-unofficial | ouramcp |
| Garmin | garmin-mcp-unofficial | garminmcp |
| Strava | strava-mcp-unofficial | strava-mcp |
| Fitbit | fitbit-mcp-unofficial | fitbitmcp |
| Withings | withings-mcp-unofficial | withingsmcp |
| Apple Health | apple-health-mcp-unofficial | apple-health-mcp |
| Polar | polar-mcp-unofficial | polarmcp |
| Nourish (nutrition) | wellness-nourish | wellness-nourish |
One-command setup for Hermes — preconfigures every connector above plus wellness skills + onboarding: delx-wellness-hermes.
MIT — see LICENSE. Code of Conduct.
This software is provided as-is. It is not a medical device, does not provide medical advice, and should not be used for diagnosis or treatment. Always consult qualified professionals for medical concerns.
Demo: docs/readme-demo-synthetic.md (synthetic if no device recording).
Raw mode means official WHOOP API JSON, not continuous sensor streams.
Same package, two doors. MCP registers tools on stdio/HTTP. The skill can drive the same tools through the CLI when the client has no MCP:
Copy skill/SKILL.md into your agent skills dir.