Definitive setup guide, connection test, tool playground, and prompt scaffold for BestYou OpenClaw integration.
In BestYou iOS: More → Connected Apps → OpenClaw → Generate Key
Key format: by_mcp_live_...
export BESTYOU_API_KEY="by_mcp_live_..."
{
"mcpServers": {
"bestyou": {
"url": "https://mcp.bestyou.ai/mcp",
"headers": {
"Authorization": "Bearer ${BESTYOU_API_KEY}"
}
}
}
}
After config changes, restart your OpenClaw gateway before testing tools.
Security note: keep scopes least-privilege and rotate compromised keys immediately.
Responses render here for both Quick Calls and Tool Runner requests.
User: "What's my day look like?"
Tools: get_account_link_status → get_daily_briefing → get_todays_action_plan → get_progress_snapshot
Request payload (daily brief)
{
"date": "2026-03-09"
}
Example response highlights
{
"headline": "Inconsistent sleep schedule impacts recovery and readiness.",
"readinessScore": 47,
"topActions": [
"Stabilize bedtime tonight",
"Increase fluid intake today"
]
}
Agent summary: "Readiness is 47 and recovery is the limiter. Prioritize consistent bedtime and hydration today."
User: "Just had a chicken burrito bowl"
Tools: analyze_meal_text
Request payload
{
"description": "chicken burrito bowl with brown rice and guacamole",
"timestamp": "2026-03-09T12:30:00-06:00"
}
Example response highlights
{
"estimatedCalories": 740,
"protein_g": 44,
"carbs_g": 68,
"fat_g": 31
}
Agent summary: "Solid protein intake. You're moderate-to-high carb and fat here, so the next meal should bias lean protein and vegetables."
User: "How am I trending across domains?"
Tools: get_progress_snapshot
Request payload
{
"date": "2026-03-09"
}
Example response highlights
{
"domains": [
{ "name": "sleep", "score": 68 },
{ "name": "nutrition", "score": 61 }
]
}
Agent summary: "Sleep is stable, nutrition is lagging. Focus on meal consistency and hydration today."
User: "20-minute bodyweight strength workout"
Tools: generate_workout
Request payload (generate)
{
"type": "strength",
"duration": 20,
"equipment": ["bodyweight"],
"experienceLevel": "Intermediate",
"goal": "General strength"
}
Example response highlights
{
"sessionName": "20-Min Strength Builder",
"blocks": ["Warmup", "Circuit A", "Circuit B", "Cooldown"]
}
Agent summary: "Here's your 20-minute strength session. After you finish, I can log completion and notes."
Paste into your agent's SKILL.md or system prompt.