Education
按 Bradford 法(考马斯亮蓝 G-250,595 nm)由 BSA 标准曲线定量蛋白:粘贴“浓度(µg/mL), A595”标准曲线数据与待测孔吸光度,工具做最小二乘拟合(给出斜率、截距、R²),反算 c = (A−b)/m,再乘以稀释倍数输出 µg/mL 与 mg/mL。超出标准范围的读数标记为外推;低于空白的读数判为不可定量。要点:染料响应随蛋白不同差异大(BSA 约为 IgG 的两倍),高去垢剂不适;配制标准品须与样品同缓冲液。来源:Bradford 1976 Anal Biochem。仅供教学与实验规划。
用三种语言从你的代码中调用此工具。
curl -X POST 'http://127.0.0.1:3003/zh/api/tools/bradford-assay-calculator' \
-H 'Content-Type: application/json' \
-d '{"standards":"0, 0.000\n10, 0.200\n20, 0.400\n40, 0.800","unknowns":"0.50\n0.25","dilutionFactor":1,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST http://127.0.0.1:3003/zh/api/tools/bradford-assay-calculator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| standards | textarea | 是 | One standard per line: concentration in µg/mL, then A595 (comma, semicolon, tab, or space separated). |
| unknowns | textarea | 是 | One sample A595 reading per line (blank-subtracted readings are fine as long as the curve includes the blank). |
| dilutionFactor | number | 是 | Dilution applied to the sample before the assay (1 = undiluted). |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-bradford-assay-calculator": {
"name": "bradford-assay-calculator",
"description": "按 Bradford 法(考马斯亮蓝 G-250,595 nm)由 BSA 标准曲线定量蛋白:粘贴“浓度(µg/mL), A595”标准曲线数据与待测孔吸光度,工具做最小二乘拟合(给出斜率、截距、R²),反算 c = (A−b)/m,再乘以稀释倍数输出 µg/mL 与 mg/mL。超出标准范围的读数标记为外推;低于空白的读数判为不可定量。要点:染料响应随蛋白不同差异大(BSA 约为 IgG 的两倍),高去垢剂不适;配制标准品须与样品同缓冲液。来源:Bradford 1976 Anal Biochem。仅供教学与实验规划。",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=bradford-assay-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": "bradford-assay-calculator",
"arguments": {
"standards": "0, 0.000\n10, 0.200\n20, 0.400\n40, 0.800",
"unknowns": "0.50\n0.25",
"dilutionFactor": 1,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]