Education
计算酶比活力 = 活力(U) ÷ 蛋白质量(mg),或直接用活力浓度(U/mL) ÷ 蛋白浓度(mg/mL)。输出 U/mg、nkat/mg 与 µkat/mg。比活力是纯度指标:纯化过程中随之上升,纯酶上限 = kcat(min⁻¹) ÷ MW(kDa)(如 kcat 600 min⁻¹、60 kDa → 最高 10 U/mg),实测与理论值之比即纯度估计。要求活力与蛋白测定(Bradford/BCA/A280)均在线性范围内。来源:IUBMB 命名、Scopes《Protein Purification》、Lehninger。仅供教学与实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/specific-activity-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"mass","activityU":40,"proteinMg":5,"activityPerMl":250,"proteinMgPerMl":10,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/specific-activity-calculator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| mode | select | 是 | Enter totals (U and mg) or concentrations (U/mL and mg/mL) — the ratio is the same. |
| activityU | number | 是 | Total activity in the sample (mass mode). |
| proteinMg | number | 是 | Total protein mass in the same sample (mass mode). |
| activityPerMl | number | 是 | Activity per mL of sample (concentration mode). |
| proteinMgPerMl | number | 是 | Protein per mL of the same sample (concentration mode). |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-specific-activity-calculator": {
"name": "specific-activity-calculator",
"description": "计算酶比活力 = 活力(U) ÷ 蛋白质量(mg),或直接用活力浓度(U/mL) ÷ 蛋白浓度(mg/mL)。输出 U/mg、nkat/mg 与 µkat/mg。比活力是纯度指标:纯化过程中随之上升,纯酶上限 = kcat(min⁻¹) ÷ MW(kDa)(如 kcat 600 min⁻¹、60 kDa → 最高 10 U/mg),实测与理论值之比即纯度估计。要求活力与蛋白测定(Bradford/BCA/A280)均在线性范围内。来源:IUBMB 命名、Scopes《Protein Purification》、Lehninger。仅供教学与实验规划。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=specific-activity-calculator",
"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": "specific-activity-calculator",
"arguments": {
"mode": "mass",
"activityU": 40,
"proteinMg": 5,
"activityPerMl": 250,
"proteinMgPerMl": 10,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}