Math & Numbers
Cálculo de desintegración exponencial para isótopos radiactivos y fármacos: a partir de la vida media, la cantidad inicial y el tiempo obtén la cantidad restante, o deriva la vida media, el tiempo necesario o la acumulación en estado estacionario. N(t) = N0·e^(-λt).
Llama a esta herramienta desde tu código en tres lenguajes.
curl -X POST 'https://api.elysiatools.com/es/api/tools/half-life-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"remaining","halfLife":5730,"n0":100,"nt":0,"time":11460,"percentRemaining":0,"timeUnit":"years","singleDose":0,"dosingInterval":0,"decimalPlaces":4}'Envía una petición POST con tus entradas en JSON. Los parámetros de tipo archivo requieren una subida previa.
POST https://api.elysiatools.com/es/api/tools/half-life-calculator| Nombre | Tipo | Obligatorio | Descripción |
|---|---|---|---|
| mode | select | No | — |
| halfLife | number | No | Half-life in the selected time unit. Required for remaining/time/dose modes. |
| n0 | number | No | Initial quantity (mass, activity, count, dose…). Required for remaining/half-life modes. |
| nt | number | No | Measured remaining quantity. Required for half-life/time modes. |
| time | number | No |
Añade esta herramienta a tu servidor Model Context Protocol para que los agentes de IA puedan listarla y llamarla.
Añade este bloque a la configuración de tu cliente MCP:
{
"mcpServers": {
"elysiatools-half-life-calculator": {
"name": "half-life-calculator",
"description": "Cálculo de desintegración exponencial para isótopos radiactivos y fármacos: a partir de la vida media, la cantidad inicial y el tiempo obtén la cantidad restante, o deriva la vida media, el tiempo necesario o la acumulación en estado estacionario. N(t) = N0·e^(-λt).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=half-life-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Tras conectar al endpoint SSE, lista las herramientas expuestas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoca la herramienta por su id; los argumentos se construyen a partir de sus parámetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "half-life-calculator",
"arguments": {
"mode": "remaining",
"halfLife": 5730,
"n0": 100,
"nt": 0,
"time": 11460,
"percentRemaining": 0,
"timeUnit": "years",
"singleDose": 0,
"dosingInterval": 0,
"decimalPlaces": 4
}
}
}| Elapsed time in the selected unit. Required for remaining/half-life modes. |
| percentRemaining | number | No | Alternative to N(t) in time mode: target percentage of N0 still present. |
| timeUnit | select | No | — |
| singleDose | number | No | Amount of drug administered at each dose. |
| dosingInterval | number | No | Time between consecutive doses, in the selected time unit. |
| decimalPlaces | number | No | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}¿Dudas o problemas? Contacta con [email protected]