Education
用 A260 紫外吸光度法测定 RNA 浓度:浓度 (µg/mL) = A260 × 稀释倍数 × 40 ÷ 光程 (cm)。RNA 的经验系数为 1 OD = 40 µg/mL,介于双链 DNA(50)与单链 DNA(33)之间;常见操作失误是沿用 dsDNA 的 50,会高估 RNA 产量 25%。1 µg/mL = 1 ng/µL;输入洗脱体积即可得总量 µg。附带 0.1–1.5 线性范围判读;纯 RNA 的 OD260/280 应接近 2.0(DNA 约 1.8),纯度请用配套比值工具判断,操作注意无 RNase、置冰。来源:Marmur & Doty 1961/1962、Sambrook & Russell、Manchester 1995、Thermo Fisher NanoDrop。仅供教学与实验规划,请以校准仪器为准。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/rna-concentration-a260' \
-H 'Content-Type: application/json' \
-d '{"a260":0.4,"dilutionFactor":5,"pathLengthCm":1,"sampleVolumeUl":250,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/rna-concentration-a260| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| a260 | number | 是 | Measured absorbance of the (diluted) sample at 260 nm, blanked against the RNase-free elution buffer. |
| dilutionFactor | number | 是 | Sample-to-total dilution before measurement (1 = measured undiluted). |
| pathLengthCm | number | 是 | Cuvette path length (1 cm standard; microvolume readers may use 0.1–1 cm). |
| sampleVolumeUl | number | 否 | Total elution volume in µL; enter 0 to skip the total-yield calculation. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-rna-concentration-a260": {
"name": "rna-concentration-a260",
"description": "用 A260 紫外吸光度法测定 RNA 浓度:浓度 (µg/mL) = A260 × 稀释倍数 × 40 ÷ 光程 (cm)。RNA 的经验系数为 1 OD = 40 µg/mL,介于双链 DNA(50)与单链 DNA(33)之间;常见操作失误是沿用 dsDNA 的 50,会高估 RNA 产量 25%。1 µg/mL = 1 ng/µL;输入洗脱体积即可得总量 µg。附带 0.1–1.5 线性范围判读;纯 RNA 的 OD260/280 应接近 2.0(DNA 约 1.8),纯度请用配套比值工具判断,操作注意无 RNase、置冰。来源:Marmur & Doty 1961/1962、Sambrook & Russell、Manchester 1995、Thermo Fisher NanoDrop。仅供教学与实验规划,请以校准仪器为准。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=rna-concentration-a260",
"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": "rna-concentration-a260",
"arguments": {
"a260": 0.4,
"dilutionFactor": 5,
"pathLengthCm": 1,
"sampleVolumeUl": 250,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}