Health
按 C₁V₁ = C₂V₂ 计算向培养基中加入抗生素储液的体积:V₁ = 工作浓度 × 终体积 ÷ 储液浓度。支持 mg/mL、µg/mL、g/L、ng/mL 绝对浓度单位以及 ×(浓缩倍数,如 1000× 储液)表示法,体积支持 µL/mL/L。输出取液体积(mL 与 µL)、需补加的培养基体积和稀释倍数。参考工作浓度:氨苄 100 µg/mL、卡那 25–50、氯霉素 25–34、四环 10–12.5(E. coli/LB),请以实验方案为准。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/antibiotic-concentration' \
-H 'Content-Type: application/json' \
-d '{"stockConcentration":100,"stockUnit":"mg/mL","workingConcentration":50,"workingUnit":"µg/mL","finalVolume":100,"volumeUnit":"mL","decimalPlaces":3}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/antibiotic-concentration| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| stockConcentration | number | 是 | Concentration of the stock solution (e.g. ampicillin 100 mg/mL). |
| stockUnit | select | 是 | — |
| workingConcentration | number | 是 | Desired final concentration in the medium (e.g. 50 µg/mL). |
| workingUnit | select | 是 | — |
| finalVolume | number | 是 | Total volume of medium + stock to prepare. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-antibiotic-concentration": {
"name": "antibiotic-concentration",
"description": "按 C₁V₁ = C₂V₂ 计算向培养基中加入抗生素储液的体积:V₁ = 工作浓度 × 终体积 ÷ 储液浓度。支持 mg/mL、µg/mL、g/L、ng/mL 绝对浓度单位以及 ×(浓缩倍数,如 1000× 储液)表示法,体积支持 µL/mL/L。输出取液体积(mL 与 µL)、需补加的培养基体积和稀释倍数。参考工作浓度:氨苄 100 µg/mL、卡那 25–50、氯霉素 25–34、四环 10–12.5(E. coli/LB),请以实验方案为准。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=antibiotic-concentration",
"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": "antibiotic-concentration",
"arguments": {
"stockConcentration": 100,
"stockUnit": "mg/mL",
"workingConcentration": 50,
"workingUnit": "µg/mL",
"finalVolume": 100,
"volumeUnit": "mL",
"decimalPlaces": 3
}
}
}有问题或反馈?请联系 [email protected]
| volumeUnit | select | 是 | — |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}