Math & Numbers
Compute remaining radionuclide activity A(t) = A₀·2^(−t/T½) with λ = ln2/T½ in Bq/Ci/dpm units, for Tc-99m, F-18 and other isotopes.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/half-life-activity-decay' \
-H 'Content-Type: application/json' \
-d '{"initialActivity":800,"activityUnit":"MBq","halfLife":6.01,"halfLifeUnit":"hours","elapsedTime":6,"timeUnit":"hours","decimalPlaces":2}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/half-life-activity-decay| Name | Type | Required | Description |
|---|---|---|---|
| initialActivity | number | Yes | Activity at t = 0 in the selected activity unit. Must be non-negative. |
| activityUnit | select | Yes | Unit of the initial (and remaining) activity. |
| halfLife | number | Yes | Physical half-life in the selected time unit. Must be greater than zero. |
| halfLifeUnit | select | Yes | Time unit of the half-life. |
| elapsedTime | number | Yes |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-half-life-activity-decay": {
"name": "half-life-activity-decay",
"description": "Compute remaining radionuclide activity A(t) = A₀·2^(−t/T½) with λ = ln2/T½ in Bq/Ci/dpm units, for Tc-99m, F-18 and other isotopes.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=half-life-activity-decay",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "half-life-activity-decay",
"arguments": {
"initialActivity": 800,
"activityUnit": "MBq",
"halfLife": 6.01,
"halfLifeUnit": "hours",
"elapsedTime": 6,
"timeUnit": "hours",
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
| Time since the initial activity measurement. Must be non-negative. |
| timeUnit | select | Yes | Time unit of the elapsed time. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}