Whoop MCP Server
Integrates WHOOP biometric data into Claude and other MCP-compatible applications, providing access to sleep analysis, recovery metrics, strain tracking, and biological age data through natural language queries.
README
Whoop MCP Server
A Model Context Protocol (MCP) server for accessing Whoop fitness data. Integrate your WHOOP biometric data into Claude, LLMs, and other MCP-compatible applications.
Features
- Comprehensive Overview - All your daily metrics in one call
- Sleep Analysis - Deep dive into sleep performance and quality
- Recovery Metrics - HRV, RHR, and recovery contributors
- Strain Tracking - Day strain with heart rate zones and activities
- Healthspan - Biological age and pace of aging metrics
Quick Start
- Clone the repository:
git clone https://github.com/yourusername/whoop-mcp.git
cd whoop-mcp
- Create a
.envfile with your WHOOP credentials:
echo "WHOOP_EMAIL=your-email@example.com" > .env
echo "WHOOP_PASSWORD=your-password" >> .env
echo "PORT=3000" >> .env
Or set as environment variables:
export WHOOP_EMAIL='your-email@example.com'
export WHOOP_PASSWORD='your-password'
- Install dependencies:
bun install
- Start the server:
bun run start
Or for development with hot reload:
bun run dev
The server will run on http://localhost:3000/mcp by default.
Docker Deployment
- Create a
.envfile with your credentials:
cp .env.example .env
# Edit .env with your actual credentials
- Build the Docker image:
docker build -t whoop-mcp .
- Run the container:
docker run -d \
--name whoop-mcp \
whoop-mcp
The --env-file .env flag automatically loads all environment variables from your .env file.
- View logs:
docker logs -f whoop-mcp
- Stop the container:
docker stop whoop-mcp
The Docker image is based on the official Bun Alpine image. The container includes health checks to monitor the server's status.
Smithery Deployment
This server is configured to work with Smithery, a platform for deploying MCP servers. When deployed on Smithery:
-
Configuration via Query Parameters: Smithery passes your credentials as query parameters to the
/mcpendpoint (defined insmithery.yaml):whoopEmail- Your Whoop account emailwhoopPassword- Your Whoop account passwordmcpAuthToken- Optional authentication token
-
Automatic Configuration: The server automatically extracts these from query parameters when running on Smithery, so you don't need to set environment variables manually.
-
Deploy Button: Use the Railway deploy button above for quick deployment, or follow Smithery's documentation for other deployment options.
The smithery.yaml file in the repository root defines the configuration schema that Smithery uses to collect your credentials securely.
Configuration
Credentials Configuration
The server supports two methods for providing credentials:
-
Query Parameters (used by Smithery): Pass credentials as query parameters to the
/mcpendpointwhoopEmail- Your Whoop account emailwhoopPassword- Your Whoop account passwordmcpAuthToken- Optional authentication token
-
Environment Variables (used for local/Docker deployment):
| Variable | Required | Default | Description |
|---|---|---|---|
WHOOP_EMAIL |
Yes | - | Your Whoop account email |
WHOOP_PASSWORD |
Yes | - | Your Whoop account password |
MCP_AUTH_TOKEN |
No | - | Optional authentication token for MCP requests |
PORT |
No | 3000 | Server port |
The server will check query parameters first, then fall back to environment variables if not provided.
Optional Authentication
To protect your MCP server from unauthorized access, you can set the MCP_AUTH_TOKEN environment variable. When set, all requests to the /mcp endpoint must include a matching Bearer token:
export MCP_AUTH_TOKEN='your-secret-token-here'
Or add it to your .env file:
echo "MCP_AUTH_TOKEN=your-secret-token-here" >> .env
Clients must then include the token in the Authorization header:
curl -X POST http://localhost:3000/mcp \
-H "Authorization: Bearer your-secret-token-here" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
Note: If MCP_AUTH_TOKEN is not set, the server will accept all requests (useful for local development).
Using with Claude Desktop
Add this configuration to your Claude Desktop config file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
Without Authentication (Local Development)
{
"mcpServers": {
"whoop": {
"command": "bun",
"args": ["run", "/absolute/path/to/whoop-mcp/index.ts"],
"env": {
"WHOOP_EMAIL": "your-email@example.com",
"WHOOP_PASSWORD": "your-password"
}
}
}
}
With Authentication (Recommended)
{
"mcpServers": {
"whoop": {
"command": "bun",
"args": ["run", "/absolute/path/to/whoop-mcp/index.ts"],
"env": {
"WHOOP_EMAIL": "your-email@example.com",
"WHOOP_PASSWORD": "your-password",
"MCP_AUTH_TOKEN": "your-secret-token-here"
}
}
}
}
Replace /absolute/path/to/whoop-mcp/ with the actual path to this directory.
Available Tools
The server provides five main tools for accessing your Whoop data:
whoop_get_overview
Retrieves comprehensive Whoop overview data for a specific date in a single API call.
Parameters:
date(optional) - Date in YYYY-MM-DD format. Defaults to today.
Returns:
- Cycle Info: Cycle ID, day, date display, sleep state
- Live Metrics: Recovery score, day strain, sleep hours, calories burned
- Gauges: All score gauges from the home screen
- Activities: Today's activities with scores and times
- Key Statistics: HRV, RHR, VO2 Max, respiratory rate, steps with 30-day trends
- Journal: Journal completion status
Example usage:
"Can you check my Whoop data for today?"
"What was my recovery score on 2024-01-15?"
"Show me my Whoop stats from yesterday"
"How many steps did I take and what were my activities today?"
whoop_get_sleep
Retrieves detailed sleep analysis and performance metrics.
Parameters:
date(optional) - Date in YYYY-MM-DD format. Defaults to today.
Returns:
- Sleep performance score
- Hours vs needed
- Sleep consistency
- Sleep efficiency
- High sleep stress percentage
- Personalized insights and recommendations
Example usage:
"How did I sleep last night?"
"What's my sleep performance for October 27?"
"Why is my sleep score low today?"
whoop_get_recovery
Retrieves comprehensive recovery deep dive analysis including contributors and trends.
Parameters:
date(optional) - Date in YYYY-MM-DD format. Defaults to today.
Returns:
- Recovery score (0-100%)
- Recovery contributors:
- Heart Rate Variability (HRV)
- Resting Heart Rate (RHR)
- Respiratory Rate
- Sleep Performance
- Trend indicators vs 30-day baseline
- Personalized coach insights
Example usage:
"What's my recovery score today?"
"Show me my recovery analysis for yesterday"
"How is my HRV trending compared to my baseline?"
whoop_get_strain
Retrieves comprehensive strain deep dive analysis including contributors, activities, and trends.
Parameters:
date(optional) - Date in YYYY-MM-DD format. Defaults to today.
Returns:
- Strain score with target and optimal ranges
- Strain contributors:
- Heart Rate Zones 1-3
- Heart Rate Zones 4-5
- Strength Activity Time
- Steps
- Today's activities with individual strain scores
- Trend indicators vs 30-day baseline
- Personalized coach insights
Example usage:
"What's my strain score today?"
"Show me my strain analysis and activities"
"How much time did I spend in heart rate zones 4-5?"
"Did I reach my optimal strain target?"
whoop_get_healthspan
Retrieves comprehensive healthspan analysis including WHOOP Age (biological age) and pace of aging metrics.
Parameters:
date(optional) - Date in YYYY-MM-DD format. Defaults to today.
Returns:
- WHOOP Age (biological age)
- Age status (Younger, Same, Older vs. chronological age)
- Years difference from chronological age
- Pace of aging (e.g., 0.5x = aging slower than average)
- Comparison with previous period
- Weekly date range for healthspan measurement
Example usage:
"What's my WHOOP Age?"
"Show me my biological age and healthspan data"
"How fast am I aging compared to average?"
"Am I aging slower or faster than my chronological age?"
How It Works
The server automatically handles authentication:
- Logs in with your email/password on first request
- Stores the access token (valid for 24 hours)
- Automatically re-authenticates before token expires
- Retries failed requests after re-authentication
Security
Best Practices
- Never commit your
.envfile or share your WHOOP credentials - The server stores Whoop authentication tokens in memory only (they expire after 24 hours)
- Use
MCP_AUTH_TOKENwhen exposing the server to a network or untrusted clients - Generate strong, random tokens for
MCP_AUTH_TOKEN(e.g., usingopenssl rand -hex 32) - When running in production or on a network, always set
MCP_AUTH_TOKEN
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT - see LICENSE file for details
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。