Education
MOI from titer/volume/cells or the virus volume for a target MOI, with Poisson % infected. Educational use only.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/moi-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"moi","viralTiter":1000000,"infectionVolumeMl":1,"cellCount":1000000,"targetMoi":3,"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/moi-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | Yes | Compute MOI from your infection setup, or the virus volume for a target MOI. |
| viralTiter | number | Yes | Infectious titer of the viral stock. |
| infectionVolumeMl | number | Yes | Volume of inoculum added to the cells (MOI mode). |
| cellCount | number | Yes | Total cells in the well/flask at infection. |
| targetMoi | 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-moi-calculator": {
"name": "moi-calculator",
"description": "MOI from titer/volume/cells or the virus volume for a target MOI, with Poisson % infected. Educational use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=moi-calculator",
"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": "moi-calculator",
"arguments": {
"mode": "moi",
"viralTiter": 1000000,
"infectionVolumeMl": 1,
"cellCount": 1000000,
"targetMoi": 3,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
| Desired MOI (volume mode); 3 gives ~95% infected cells. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}