Age Calculator
Calculate exact age in years, months, days — plus total days lived, day of birth, and next birthday.
Age
35 years 11 months 26 days
Total days
13,144
Total weeks
1,877
Total hours
315,456
Total minutes
18,927,360
Born on a Friday.
Next birthday: 6/15/2026 (5 days away — turning 36)
</>Use this tool programmaticallycurl · JavaScript · MCP
Same tool, callable from any HTTP client or from Claude (via MCP). Anonymous: 100 req/day per IP. Sign up for 1,000 req/day.
curl
curl https://api.b-e-a-d.com/tools/age-calculator/run \
-H "Content-Type: application/json" \
-d '{
"birth": "a"
}'JavaScript (fetch)
const res = await fetch("https://api.b-e-a-d.com/tools/age-calculator/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"birth": "a"
}),
});
const data = await res.json();
console.log(data.result);MCP (Claude Desktop / Claude Code)
# In Claude Desktop / Claude Code, add to your MCP config:
{
"mcpServers": {
"bead": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.b-e-a-d.com"]
}
}
}
# Then ask Claude to call:
mcp__bead__bead_age_calculatorFull reference: developer docs · OpenAPI spec
You might also like
- Business Days CalculatorCount business days between two dates, or add N business days — with US or UK holiday awareness.
- World Clock & Timezone ConverterSee the current time in any timezone, or convert a moment from one zone to another.
- CIDR / Subnet CalculatorCompute network, broadcast, host range, count, and mask for any IPv4 CIDR.
- Smart CalculatorA calculator that understands expressions, percentages, and unit conversions like '12ft to cm' or '15% of 240'.