victoria-latynina commited on
Commit
c364fb7
·
verified ·
1 Parent(s): 10862bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -2
README.md CHANGED
@@ -16,6 +16,28 @@ license: apache-2.0
16
  short_description: Whoop Data Analysis
17
  ---
18
 
19
- Whoop MCP Server
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- Gradio Adaptation of [this github solution for Whoop](https://github.com/ctvidic/whoop-mcp-server/tree/main)
 
16
  short_description: Whoop Data Analysis
17
  ---
18
 
19
+ # Whoop MCP Server
20
+
21
+ Gradio Adaptation of [this github solution for Whoop](https://github.com/ctvidic/whoop-mcp-server/tree/main)
22
+
23
+ ## Usage
24
+
25
+ You'll need Whoop credentials to use this server. The server uses email/password authentication with the Whoop API.
26
+
27
+ The server exposes the following tools:
28
+
29
+ ### Cycle Queries
30
+ - `get_cycle_collection(start_date: str, end_date: str)`: Get cycle data for a specific date range
31
+ - `get_latest_cycle()`: Get the most recent cycle data
32
+
33
+ ### Recovery and Strain
34
+ - `get_recovery_data(start_date: str, end_date: str)`: Get recovery data for a specific date range
35
+ - `get_strain_data(start_date: str, end_date: str)`: Get strain data for a specific date range
36
+ - `get_average_strain(days: int = 7)`: Calculate average strain over specified number of days
37
+
38
+ ### Profile and Authentication
39
+ - `get_profile()`: Get user profile information
40
+ - `check_auth_status()`: Check authentication status with Whoop API
41
+
42
+ Dates should be provided in ISO format (YYYY-MM-DD).
43