Calculate personalized daily water intake recommendations based on weight, activity level, and climate factors. Access via MCP in Cursor/Claude Code or REST API at `/v1/health/water-intake`. Returns precise fluid ounce amounts — no more guessing at hydration needs. Perfect for health apps and fitness tracking integrations.
curl "https://tinyfn.io/v1/health/water-intake" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/health/water-intake', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/health/water-intake',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's health tools:
{
"mcpServers": {
"tinyfn-health": {
"url": "https://tinyfn.io/mcp/health",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Uses body weight as baseline (typically 0.5-1 oz per pound), then adjusts for activity level, climate conditions, and other factors like pregnancy or breastfeeding.
Requires weight and accepts optional parameters for activity level, climate (hot/humid), pregnancy status, and age to provide personalized recommendations.
Returns values in fluid ounces by default. Convert to liters, cups, or milliliters using TinyFn's unit conversion tools for your preferred measurement system.
Yes, specify activity level (sedentary, moderate, active, very active) to get adjusted recommendations that account for fluid loss through perspiration.
Basic uses simple weight-based formulas, while personalized factors in individual variables like climate, pregnancy, and activity patterns for more accurate hydration guidance.
Get your free API key and start using Daily Water Intake in seconds.
Get Free API Key