Give your AI agents
nutrition superpowers
Full MCP server with 13 tools. Your AI agent can log meals, track weight, chat with a nutrition coach, search recipes, and more. One endpoint, token auth, stateless.
Quick start
// OpenClaw config
{
"mcpServers": {
"aumai": {
"url": "https://aumai.app/api/mcp/sse",
"headers": {
"Authorization": "Bearer YOUR_TOKEN"
}
}
}
}// Claude Desktop config
{
"mcpServers": {
"aumai": {
"command": "mcp-remote",
"args": [
"https://aumai.app/api/mcp/sse",
"--header",
"Authorization: Bearer YOUR_TOKEN"
]
}
}
}# Test the connection
curl -X POST https://aumai.app/api/mcp/sse \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"method": "tools/list"}'How it works
1. Create a token
Sign up, go to Settings → MCP Tokens, and create a bearer token.
2. Connect your agent
Add the MCP server URL and token to your AI agent config (OpenClaw, Claude, etc.)
3. Use it
Your agent can now log meals, track weight, chat with the coach, and more.
13 tools available
Everything your agent needs to manage nutrition
log_foodWriteLog a meal with nutrition estimates
log_weightWriteLog a weight measurement
log_waterWriteLog water intake
log_workoutWriteLog a workout session
update_goalsWriteUpdate daily nutrition goals
chat_with_coachCoachSend a message to the Your health coach
get_profileReadGet user profile, goals, and settings
get_daily_summaryReadGet today's nutrition, weight, and workout summary
get_food_logsReadGet food logs for a date range
get_weight_historyReadGet weight history
get_workout_logsReadGet workout logs for a date range
search_recipesReadSearch for recipes by keyword
setup_ai_configSettingsConfigure OpenAI or Anthropic API key
Use cases
🤖 Personal AI assistant
"Hey Claude, log my lunch. I had pasta carbonara". Your assistant logs the meal with estimated nutrition via Aumaï.
📊 Daily briefing
Your agent calls get_daily_summary every evening and gives you a nutrition recap with advice from the coach.
🍳 Recipe finder
"What can I cook with chicken and broccoli?". the agent searches your recipes and suggests meals that fit your macros.
💬 Smart reminders
Your agent checks if you've logged meals today and reminds you if not. It can even suggest what to eat based on your history.