Education
10-fold series design: step count from a target, per-tube concentration table, and the 1:9 transfer recipe. Educational use only.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/serial-dilution-planner' \
-H 'Content-Type: application/json' \
-d '{"mode":"target","stockConcentration":2000000000,"targetConcentration":2000,"steps":6,"tubeVolumeMl":1,"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/serial-dilution-planner| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | Yes | Solve the step count from a target concentration, or start from a known step count. |
| stockConcentration | number | Yes | Concentration of the starting material (any consistent unit). |
| targetConcentration | number | Yes | Concentration the final tube should reach or fall below (target mode). |
| steps | number | Yes | Fixed step count (steps mode), 1–12. |
| tubeVolumeMl | number |
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-serial-dilution-planner": {
"name": "serial-dilution-planner",
"description": "10-fold series design: step count from a target, per-tube concentration table, and the 1:9 transfer recipe. Educational use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=serial-dilution-planner",
"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": "serial-dilution-planner",
"arguments": {
"mode": "target",
"stockConcentration": 2000000000,
"targetConcentration": 2000,
"steps": 6,
"tubeVolumeMl": 1,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
| Final volume in each dilution tube; sets the transfer recipe. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}