Health and fitness data from Fitbit
## Fitbit MCP Server: Fitness Tracking Platform The **Fitbit MCP Server** integrates Fitbit fitness tracking into Google Antigravity, enabling AI-assisted activity monitoring, sleep analysis, and health goal tracking from your Fitbit devices. ### Why Fitbit MCP? - **Activity Tracking**: Monitor steps, distance, calories, and active minutes daily - **Sleep Analysis**: Detailed sleep stages and quality metrics for better rest - **Heart Health**: Continuous heart rate monitoring with cardio fitness scores - **Goal Management**: Set and track personalized fitness goals - **Social Features**: Connect with friends for motivation and challenges ### Key Features #### 1. Activity Data ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my activity summary for today including steps and active zone minutes" }] ) ``` #### 2. Sleep Analysis ```python # Analyze sleep response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my sleep data with deep sleep and REM breakdowns for this week" }] ) ``` #### 3. Heart Rate ```python # Track heart rate response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show heart rate zones during workouts and resting heart rate trends" }] ) ``` #### 4. Goal Progress ```python # Check goals response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my progress toward weekly fitness goals and streak status" }] ) ``` ### Configuration ```json { "mcpServers": { "fitbit": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-fitbit"], "env": { "FITBIT_CLIENT_ID": "your-client-id", "FITBIT_CLIENT_SECRET": "your-client-secret" } } } } ``` ### Use Cases **Daily Fitness**: Track daily activity and maintain fitness streaks. **Sleep Improvement**: Analyze and optimize sleep patterns. **Weight Management**: Monitor activity levels for health goals. **Exercise Planning**: Plan workouts based on heart rate and recovery data. The Fitbit MCP Server brings comprehensive fitness tracking into your workflow.
{
"mcpServers": {
"fitbit": {
"mcpServers": {
"fitbit": {
"env": {
"FITBIT_CLIENT_ID": "YOUR_CLIENT_ID",
"FITBIT_CLIENT_SECRET": "YOUR_SECRET"
},
"args": [
"-y",
"fitbit-mcp-server"
],
"command": "npx"
}
}
}
}
}