Education
由当前与目标细胞密度计算传代稀释比:N = 当前密度 ÷ 目标密度(1:N 传代);体积模式进一步给出保留体积 = V ÷ N 与需补加的新鲜培养基 = V − V/N(总体积不变)。附接种百分比、两次传代间的倍增次数 n = ln(N)/ln2 与等效倍增时间(结合传代间隔),以及常见参考(贴壁系 1:2–1:5、快速悬浮系 1:10–1:20)。来源:Freshney 传代方法、ATCC 培养指南。仅供教学与实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/passage-dilution-ratio' \
-H 'Content-Type: application/json' \
-d '{"mode":"volume","currentDensity":2000000,"targetDensity":200000,"cultureVolumeMl":10,"intervalHours":48,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/passage-dilution-ratio| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| mode | select | 是 | Just the 1:N ratio, or the split volumes for a specific culture volume. |
| currentDensity | number | 是 | Viable-cell density of the culture being passaged (from a hemocytometer count). |
| targetDensity | number | 是 | Seed density you want in the new flask. |
| cultureVolumeMl | number | 是 | Total volume of the culture being split (volume mode). |
| intervalHours | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-passage-dilution-ratio": {
"name": "passage-dilution-ratio",
"description": "由当前与目标细胞密度计算传代稀释比:N = 当前密度 ÷ 目标密度(1:N 传代);体积模式进一步给出保留体积 = V ÷ N 与需补加的新鲜培养基 = V − V/N(总体积不变)。附接种百分比、两次传代间的倍增次数 n = ln(N)/ln2 与等效倍增时间(结合传代间隔),以及常见参考(贴壁系 1:2–1:5、快速悬浮系 1:10–1:20)。来源:Freshney 传代方法、ATCC 培养指南。仅供教学与实验规划。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=passage-dilution-ratio",
"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": "passage-dilution-ratio",
"arguments": {
"mode": "volume",
"currentDensity": 2000000,
"targetDensity": 200000,
"cultureVolumeMl": 10,
"intervalHours": 48,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| Optional planned hours between passages, for doublings and doubling time. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}