whoop-mcp
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., "@whoop-mcpwhat was my sleep score last night?"
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.
whoop-mcp
A small Model Context Protocol server that gives Claude read access to your WHOOP health data — recovery, sleep, strain, and workouts — through the official WHOOP API v2.
Ask Claude things like "Did I sleep well?", "Am I recovered enough to train hard today?", or "What's my resting heart rate trend this week?" and it will pull live data from your WHOOP.
Note on "current heart rate": WHOOP's API exposes completed summaries (last night's sleep, today's recovery, per-workout HR), not a live real-time pulse.
daily_summarygives the freshest snapshot available — the latest recovery score, resting heart rate, HRV, and today's accumulated strain.
Tools
Tool | What it returns |
| One-call snapshot: latest recovery (score, HRV, resting HR), last night's sleep, today's strain. Start here. |
| Recovery records for the last N days (default 7). |
| Sleep records with stage breakdown for the last N days. |
| Daily strain / cycle data (day strain, avg & max HR). |
| Workout activities for the last N days (default 14). |
| Name, email, user id. |
| Height, weight, max heart rate. |
Related MCP server: Whoop MCP Server
Setup
1. Create a WHOOP developer app
Go to the WHOOP Developer Dashboard and sign in with your WHOOP account.
Create an app. Copy the Client ID and Client Secret.
Add a Redirect URI of exactly
http://localhost:8080/callback.Make sure these scopes are enabled:
read:recovery,read:cycles,read:sleep,read:workout,read:profile,read:body_measurement, andoffline.
2. Configure credentials
cp .env.example .env
# edit .env and paste in your Client ID + Secret3. Authorize once
uv run whoop-authorizeThis opens your browser, you approve access, and tokens are saved to
~/.whoop-mcp/tokens.json (readable only by you). The server refreshes them
automatically from then on — you won't need to log in again.
4. Register the server with Claude
claude mcp add whoop -- uv --directory /Users/adam/dev/whoop-mcp run whoop-mcpRestart Claude, then ask: "How's my WHOOP recovery today?"
Using it from the Claude apps (remote connector)
The stdio setup above only works in Claude Code, which can launch the server
as a local subprocess. To use WHOOP from claude.ai, the desktop app, and
mobile, run the server remotely over HTTP and add it as a custom connector.
The same code serves an HTTP transport via the whoop-mcp-http entrypoint. The
MCP endpoint lives at /mcp behind a minimal single-user OAuth 2.1 layer
(see oauth.py) — claude.ai custom connectors force an OAuth handshake and
won't connect to a no-auth server. When you add the connector, Claude bounces
you to a login page; enter your WHOOP_MCP_SHARED_SECRET and it's authorized.
Tokens are stateless HMAC-signed blobs, so nothing is stored and auth survives
restarts.
Deploy (Render free tier — no monthly cost)
Create a free Upstash Redis database (upstash.com) and copy its REST URL and REST token. This is where the rotating WHOOP token is persisted, so it survives restarts without a paid disk.
Push this repo to GitHub and create a Render Blueprint from
render.yaml(uses thefreeweb plan).Set the secret env vars in the Render dashboard (all marked
sync: false):UPSTASH_REDIS_REST_URL,UPSTASH_REDIS_REST_TOKEN— from step 1.WHOOP_CLIENT_ID,WHOOP_CLIENT_SECRET— from the WHOOP dashboard.WHOOP_REFRESH_TOKEN— therefresh_tokenfield from your local~/.whoop-mcp/tokens.jsonafteruv run whoop-authorize.
Render generates
WHOOP_MCP_SHARED_SECRETfor you — copy it from the dashboard.
Why Redis? WHOOP rotates refresh tokens on every use, so the rotated token must outlive restarts. The free Render web tier has no persistent disk, so the server stores the token blob in Upstash instead (see the token-backend section of
auth.py). Locally, with no Redis env vars set, it falls back to a 0600 file in~/.whoop-mcp/.Cold starts: free web services sleep after ~15 min idle, so the first query after a lull takes ~30-60s and may need one retry. To keep it warm, ping
/healthzevery ~10 min from a free scheduler like cron-job.org.Prefer a persistent disk instead? On a paid Starter plan you can drop the Upstash vars, add a
disk:mounted at/data, and setWHOOP_MCP_HOME=/data.
Add the connector
In claude.ai → Settings → Connectors → Add custom connector, paste:
https://<your-app>.onrender.com/mcpClaude opens a login page — enter your WHOOP_MCP_SHARED_SECRET to authorize.
Once connected there it syncs to the desktop and mobile apps too.
Run the HTTP server locally to test first:
WHOOP_MCP_SHARED_SECRET=$(uuidgen) PORT=8080 uv run whoop-mcp-http
# health check: curl localhost:8080/healthz -> okHow auth works
WHOOP uses OAuth 2.0 with rotating refresh tokens — each refresh returns a
new refresh token and invalidates the old one. auth.py persists the new token
after every refresh, so the connection stays alive indefinitely without
re-authorizing. No secrets are stored in your Claude config; everything lives in
~/.whoop-mcp/.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/ab75173/whoop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server