whoop-mcp-server
MCP server that enables AI assistants to access Whoop health data including recovery, sleep, workouts, and daily strain for personalized health recommendations.
README
Whoop MCP Server
An MCP (Model Context Protocol) server that provides access to your Whoop health and fitness data, enabling Claude and other AI assistants to give you personalized health recommendations.
New here? Check out HOW_TO_USE.md for a step-by-step setup guide.
Features
- Recovery Data: Get your recovery score, HRV, resting heart rate, SpO2, and skin temperature
- Sleep Analysis: Detailed sleep stages (light, REM, deep), sleep performance, efficiency, and respiratory rate
- Workout Tracking: Strain scores, calories burned, heart rate zones, distance, and elevation
- Daily Strain: Cumulative daily strain and energy expenditure
- Health Overview: Combined view of recovery, sleep, and strain with personalized recommendations
- Profile & Body Measurements: User profile and body measurements data
Prerequisites
- Whoop Device: You need an active Whoop membership
- Whoop Developer Account: Create an app at developer.whoop.com
- Node.js 18+: Required to run the server
Setup
1. Create a Whoop Developer App
- Go to developer-dashboard.whoop.com
- Create a new app
- Set the redirect URL to
http://localhost:8080/callback - Note your Client ID and Client Secret
- Request the following scopes:
read:recoveryread:cyclesread:workoutread:sleepread:profileread:body_measurementoffline(for refresh token)
2. Install the MCP Server
cd whoop-mcp-server
npm install
npm run build
3. Get Your Initial Tokens (One-Time)
Run the token helper script:
node get-tokens.mjs
Follow the prompts to:
- Enter your Client ID and Client Secret
- Open the authorization URL in your browser
- Authorize the app and copy the code from the redirect URL
- The script will output your initial tokens
4. Configure Claude Desktop
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"whoop": {
"command": "node",
"args": ["/path/to/whoop-mcp-server/dist/index.js"],
"env": {
"WHOOP_CLIENT_ID": "your-client-id",
"WHOOP_CLIENT_SECRET": "your-client-secret",
"WHOOP_ACCESS_TOKEN": "your-initial-access-token",
"WHOOP_REFRESH_TOKEN": "your-initial-refresh-token"
}
}
}
}
5. First Use & Token Persistence
On first API call, the server will:
- Use your initial tokens from the config
- Save them to
tokens.jsonin the server directory - Automatically refresh when they expire
After initial setup, you can remove WHOOP_ACCESS_TOKEN and WHOOP_REFRESH_TOKEN from your config. The server only needs:
{
"mcpServers": {
"whoop": {
"command": "node",
"args": ["/path/to/whoop-mcp-server/dist/index.js"],
"env": {
"WHOOP_CLIENT_ID": "your-client-id",
"WHOOP_CLIENT_SECRET": "your-client-secret"
}
}
}
}
Token Architecture
┌─────────────────────────────────────────────────────────────────┐
│ STARTUP │
├─────────────────────────────────────────────────────────────────┤
│ Claude Desktop starts → WHOOP MCP server launches │
│ │ │
│ ▼ │
│ Check for tokens.json │
│ / \ │
│ Found Not Found │
│ │ │ │
│ ▼ ▼ │
│ Use persisted Use env vars │
│ tokens (initial setup) │
│ \ / │
│ ▼ ▼ │
│ Token loaded in memory │
└─────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────┐
│ ON API CALL │
├─────────────────────────────────────────────────────────────────┤
│ You ask "get my recovery" → check token expiry │
│ │ │
│ Token expired? │
│ / \ │
│ YES NO │
│ │ │ │
│ ▼ │ │
│ Refresh via WHOOP │ │
│ API (uses client │ │
│ credentials + │ │
│ refresh token) │ │
│ │ │ │
│ ▼ │ │
│ Save new tokens │ │
│ to tokens.json │ │
│ \ / │
│ ▼ ▼ │
│ Make API call with valid token │
└─────────────────────────────────────────────────────────────────┘
Key files:
tokens.json- Persisted tokens (auto-created, survives restarts)dist/index.js- The MCP server
What's automatic:
- Token refresh when expired
- Saving new tokens to disk
- Loading tokens on restart
What requires manual action:
- Initial OAuth setup (one-time)
- Re-authentication if unused for 30-90 days (refresh token expires)
Available Tools
whoop_get_profile
Get your Whoop user profile (name, email, user ID).
whoop_get_body_measurements
Get your body measurements (height, weight, max heart rate).
whoop_get_recovery
Get recovery data including recovery score, HRV, resting heart rate, SpO2.
Parameters:
limit(1-25, default 7): Number of recordsstart: Start date filter (ISO 8601)end: End date filter (ISO 8601)
whoop_get_sleep
Get detailed sleep data including sleep stages, performance, and efficiency.
Parameters:
limit(1-25, default 7): Number of recordsstart: Start date filter (ISO 8601)end: End date filter (ISO 8601)
whoop_get_workouts
Get workout data including strain, calories, heart rate zones.
Parameters:
limit(1-25, default 10): Number of recordsstart: Start date filter (ISO 8601)end: End date filter (ISO 8601)
whoop_get_cycles
Get daily physiological cycle data (strain, calories, heart rate).
Parameters:
limit(1-25, default 7): Number of recordsstart: Start date filter (ISO 8601)end: End date filter (ISO 8601)
whoop_get_health_overview
Get a comprehensive health overview combining recovery, sleep, and strain data with personalized recommendations.
Example Usage with Claude
Once configured, you can ask Claude things like:
- "How's my recovery today?"
- "Show me my sleep from last week"
- "What workouts have I done recently?"
- "Give me a health overview"
- "Based on my Whoop data, should I train hard today?"
- "How has my HRV trended this week?"
- "What was my sleep quality like last night?"
Troubleshooting
"No tokens available" error
Run node get-tokens.mjs to get initial tokens, or check that tokens.json exists.
"Missing WHOOP_CLIENT_ID or WHOOP_CLIENT_SECRET" error
These must always be in your Claude Desktop config - they never expire.
"Failed to refresh token" error
Your refresh token has expired (typically after 30-90 days of non-use). Run node get-tokens.mjs to re-authenticate.
No data returned
- Ensure you've worn your Whoop device and data has synced
- Check that your app has the required scopes authorized
View current persisted tokens
cat tokens.json
Force re-authentication
rm tokens.json
# Then run get-tokens.mjs or add tokens back to Claude config
Security Considerations
Token Storage
- Tokens are stored in
tokens.jsonwith restricted permissions (mode 0600 - owner read/write only) - Windows users: File permissions work differently on Windows and may not provide equivalent protection. Consider additional access controls.
- Tokens are stored unencrypted; ensure your system has appropriate access controls
Configuration Security
- Your
claude_desktop_config.jsoncontains your client secret in plain text - Do not commit this config file to version control
- Consider restricting file permissions on the config file:
- macOS/Linux:
chmod 600 ~/Library/Application\ Support/Claude/claude_desktop_config.json
- macOS/Linux:
Best Practices
- Regularly rotate your Whoop developer app credentials
- Monitor your Whoop account for unauthorized access
- Run
npm auditperiodically to check for dependency vulnerabilities - After initial setup, remove
WHOOP_ACCESS_TOKENandWHOOP_REFRESH_TOKENfrom your config (they're persisted intokens.json)
Optional: Custom Token Location
Set WHOOP_TOKEN_PATH environment variable to store tokens in a specific location:
"env": {
"WHOOP_TOKEN_PATH": "/path/to/secure/tokens.json",
"WHOOP_CLIENT_ID": "your-client-id",
"WHOOP_CLIENT_SECRET": "your-client-secret"
}
API Reference
This server uses the Whoop API v2. For more details on the data model and endpoints, see the official documentation.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.