Education
Judge DNA/RNA purity from A260/A280 (pure DNA ~1.8, pure RNA ~2.0; low = protein/phenol contamination, DNA > 2.0 = RNA contamination) plus the optional A260/A230 secondary check. Derived from Manchester 1995, Sambrook & Russell, Thermo Fisher T042. Educational use only.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/od260-280-ratio' \
-H 'Content-Type: application/json' \
-d '{"nucleicAcidType":"DNA","a260":0.45,"a280":0.25,"a230":0.2,"decimalPlaces":2}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/od260-280-ratio| Name | Type | Required | Description |
|---|---|---|---|
| nucleicAcidType | select | Yes | Expected ratio: DNA ~1.8, RNA ~2.0 — the acceptable window shifts with type. |
| a260 | number | Yes | Absorbance at 260 nm (nucleic acid peak), same diluted sample as the A280 reading. |
| a280 | number | Yes | Absorbance at 280 nm (protein/phenol peak) of the same diluted sample. |
| a230 | number | No | Absorbance at 230 nm; enter 0 to skip the secondary A260/A230 ratio. |
| decimalPlaces | number |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-od260-280-ratio": {
"name": "od260-280-ratio",
"description": "Judge DNA/RNA purity from A260/A280 (pure DNA ~1.8, pure RNA ~2.0; low = protein/phenol contamination, DNA > 2.0 = RNA contamination) plus the optional A260/A230 secondary check. Derived from Manchester 1995, Sambrook & Russell, Thermo Fisher T042. Educational use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=od260-280-ratio",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "od260-280-ratio",
"arguments": {
"nucleicAcidType": "DNA",
"a260": 0.45,
"a280": 0.25,
"a230": 0.2,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}