Access your human's personal context data (biometrics, sleep, activity, calendar, location) via the Fulcra Life API and MCP server. Requires human's Fulcra account + OAuth2 consent.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install fulcra-context或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install fulcra-context⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/fulcra-context/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: fulcra-context description: Access your human's personal context data (biometrics, sleep, activity, calendar, location) via the Fulcra Life API and MCP server. Requires human's Fulcra account + OAuth2 consent. homepage: https://fulcradynamics.com metadata: {"openclaw":{"emoji":"🫀","requires":{"bins":["curl"]},"primaryEnv":"FULCRA_ACCESS_TOKEN"}} ---
Give your agent situational awareness. With your human's consent, access their biometrics, sleep, activity, location, and calendar data from the Fulcra Life API.
With Fulcra Context, you can:
Use Fulcra's hosted MCP server at https://mcp.fulcradynamics.com/mcp (Streamable HTTP transport, OAuth2 auth).
Your human needs a Fulcra account (free via the Context iOS app or Portal).
Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"fulcra_context": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.fulcradynamics.com/mcp"]
}
}
}
Or run locally via uvx:
{
"mcpServers": {
"fulcra_context": {
"command": "uvx",
"args": ["fulcra-context-mcp@latest"]
}
}
}
Also tested with: Goose, Windsurf, VS Code. Open source: github.com/fulcradynamics/fulcra-context-mcp
skills.entries.fulcra-context.apiKey in openclaw.jsonpip3 install fulcra-api
from fulcra_api.core import FulcraAPI
api = FulcraAPI()
api.authorize() # Opens device flow — human visits URL and logs in
# Now you have access:
sleep = api.metric_samples(start, end, "SleepStage")
hr = api.metric_samples(start, end, "HeartRate")
events = api.calendar_events(start, end)
catalog = api.metrics_catalog()
Save the token for automation:
import json
token_data = {
"access_token": api.fulcra_cached_access_token,
"expiration": api.fulcra_cached_access_token_expiration.isoformat(),
"user_id": api.get_fulcra_userid()
}
with open("~/.config/fulcra/token.json", "w") as f:
json.dump(token_data, f)
Token expires in ~24h. Use the built-in token manager for automatic refresh (see below).
The skill includes scripts/fulcra_auth.py which handles the full OAuth2 lifecycle — including refresh tokens so your human only authorizes once.
# First-time setup (interactive — human approves via browser)
python3 scripts/fulcra_auth.py authorize
# Refresh token before expiry (automatic, no human needed)
python3 scripts/fulcra_auth.py refresh
# Check token status
python3 scripts/fulcra_auth.py status
# Get current access token (auto-refreshes if needed, for piping)
export FULCRA_ACCESS_TOKEN=$(python3 scripts/fulcra_auth.py token)
How it works:
authorize runs the Auth0 device flow and saves both the access token AND refresh tokenrefresh uses the saved refresh token to get a new access token — no human interactiontoken prints the access token (auto-refreshing if expired) — perfect for cron jobs and scriptsSet up a cron job to keep the token fresh:
For OpenClaw agents, add a cron job that refreshes the token every 12 hours:
python3 /path/to/skills/fulcra-context/scripts/fulcra_auth.py refresh
Token data is stored at ~/.config/fulcra/token.json (permissions restricted to owner).
# Get time series for sleep stages (last 24h)
curl -s "https://api.fulcradynamics.com/data/v0/time_series_grouped?metrics=SleepStage&start=$(date -u -v-24H +%Y-%m-%dT%H:%M:%SZ)&end=$(date -u +%Y-%m-%dT%H:%M:%SZ)&samprate=300" \
-H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"
curl -s "https://api.fulcradynamics.com/data/v0/time_series_grouped?metrics=HeartRate&start=$(date -u -v-2H +%Y-%m-%dT%H:%M:%SZ)&end=$(date -u +%Y-%m-%dT%H:%M:%SZ)&samprate=60" \
-H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"
curl -s "https://api.fulcradynamics.com/data/v0/{fulcra_userid}/calendar_events?start=$(date -u +%Y-%m-%dT00:00:00Z)&end=$(date -u +%Y-%m-%dT23:59:59Z)" \
-H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"
curl -s "https://api.fulcradynamics.com/data/v0/metrics_catalog" \
-H "Authorization: Bearer $FULCRA_ACCESS_TOKEN"
| Metric | What It Tells You | |--------|-------------------| | SleepStage | Sleep quality — REM, Deep, Light, Awake | | HeartRate | Current stress/activity level | | HRV | Recovery and autonomic nervous system state | | StepCount | Activity level throughout the day | | ActiveCaloriesBurned | Exercise intensity | | RespiratoryRate | Baseline health indicator | | BloodOxygen | Wellness check |
Check sleep + calendar + weather → compose a briefing calibrated to energy level.
Monitor HRV + heart rate → if elevated, keep messages brief and non-urgent.
After intense workout or poor sleep → suggest lighter schedule, remind about hydration.
Location changes → adjust timezone handling, suggest local info, modify schedule expectations.
For public demos (VC pitches, livestreams, conferences), enable demo mode to swap in synthetic calendar and location data while keeping real biometrics.
# Environment variable (recommended for persistent config)
export FULCRA_DEMO_MODE=true
# Or pass --demo flag to collect_briefing_data.py
python3 collect_briefing_data.py --demo
| Data Type | Demo Mode | Normal Mode | |-----------|-----------|-------------| | Sleep, HR, HRV, Steps | ✅ Real data | ✅ Real data | | Calendar events | 🔄 Synthetic (rotating schedules) | ✅ Real data | | Location | 🔄 Synthetic (curated NYC spots) | ✅ Real data | | Weather | ✅ Real data | ✅ Real data |
"demo_mode": true at the top level"demo_mode": true安装 Fulcra Context 后,可以对 AI 说这些话来触发它
Help me get started with Fulcra Context
Explains what Fulcra Context does, walks through the setup, and runs a quick demo based on your current project
Use Fulcra Context to access your human's personal context data (biometrics, sleep, activ...
Invokes Fulcra Context with the right parameters and returns the result directly in the conversation
What can I do with Fulcra Context in my developer & devops workflow?
Lists the top use cases for Fulcra Context, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/fulcra-context/ 目录(个人级,所有项目可用),或 .claude/skills/fulcra-context/(项目级)。重启 AI 客户端后,用 /fulcra-context 主动调用,或让 AI 根据上下文自动发现并使用。
Fulcra Context 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Fulcra Context 可免费安装使用。请查阅仓库了解许可证信息。
Access your human's personal context data (biometrics, sleep, activity, calendar, location) via the Fulcra Life API and MCP server. Requires human's Fulcra account + OAuth2 consent.
Fulcra Context 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Fulcra Context
Identifies repetitive steps in your workflow and sets up Fulcra Context to handle them automatically