Health
根据一步生长实验计算噬菌体裂解量(burst size):裂解量 = (裂解后游离 PFU/mL − 感染时接种 PFU/mL) ÷ 感染细胞数,其中感染细胞数 = 感染时细胞密度 × 感染百分比。感染百分比可由 MOI 按 Poisson 吸附 P = 1 − e^(−MOI) 估算:MOI 1 ≈ 63%、MOI 2 ≈ 86%、MOI 3 ≈ 95%、MOI 5 ≈ 99%。附典型范围判读:<20 偏低,20–100 常见(λ ≈ 50–100),100–300 较高(T4 类 ≈ 100–200+),>300 需复核(二次吸附可能虚高)。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/phage-burst-size' \
-H 'Content-Type: application/json' \
-d '{"pfuAfterLysis":5010000000,"pfuInoculated":10000000,"cellDensity":100000000,"infectionPercent":50,"decimalPlaces":1}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/phage-burst-size| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| pfuAfterLysis | number | 是 | Free phage in the lysate at the end of the one-step growth curve. |
| pfuInoculated | number | 是 | Phage added at the start of infection (0 is acceptable when negligible). |
| cellDensity | number | 是 | Host cell density when phage was added (e.g. mid-log ~1×10⁸ cells/mL). |
| infectionPercent | number | 是 | Infected fraction in %. From MOI via Poisson: 1 ≈ 63%, 2 ≈ 86%, 3 ≈ 95%, 5 ≈ 99%. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-phage-burst-size": {
"name": "phage-burst-size",
"description": "根据一步生长实验计算噬菌体裂解量(burst size):裂解量 = (裂解后游离 PFU/mL − 感染时接种 PFU/mL) ÷ 感染细胞数,其中感染细胞数 = 感染时细胞密度 × 感染百分比。感染百分比可由 MOI 按 Poisson 吸附 P = 1 − e^(−MOI) 估算:MOI 1 ≈ 63%、MOI 2 ≈ 86%、MOI 3 ≈ 95%、MOI 5 ≈ 99%。附典型范围判读:<20 偏低,20–100 常见(λ ≈ 50–100),100–300 较高(T4 类 ≈ 100–200+),>300 需复核(二次吸附可能虚高)。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=phage-burst-size",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "phage-burst-size",
"arguments": {
"pfuAfterLysis": 5010000000,
"pfuInoculated": 10000000,
"cellDensity": 100000000,
"infectionPercent": 50,
"decimalPlaces": 1
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}