Education
Specific growth rate µ from a doubling time or two counts, with per-hour/day/minute rates and E. coli benchmarks. Educational use only.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/growth-rate-constant' \
-H 'Content-Type: application/json' \
-d '{"mode":"doubling","doublingTime":20,"n0":1000000,"nt":8000000,"elapsed":3,"timeUnit":"minutes","decimalPlaces":4}'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/growth-rate-constant| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | Yes | Enter a doubling time directly, or two counts with the elapsed time. |
| doublingTime | number | Yes | Doubling/generation time of the culture (doubling-time mode). |
| n0 | number | Yes | Count or density at the first time point (counts mode). |
| nt | number | Yes | Count or density at the second time point, same unit as N₀ (counts mode). |
| elapsed | 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-growth-rate-constant": {
"name": "growth-rate-constant",
"description": "Specific growth rate µ from a doubling time or two counts, with per-hour/day/minute rates and E. coli benchmarks. Educational use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=growth-rate-constant",
"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": "growth-rate-constant",
"arguments": {
"mode": "doubling",
"doublingTime": 20,
"n0": 1000000,
"nt": 8000000,
"elapsed": 3,
"timeUnit": "minutes",
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| Interval between the two counts (counts mode). |
| timeUnit | select | Yes | Unit of the doubling time or elapsed interval. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}