Education
PCR Ta by the simple rule (lower primer Tm − 5°C) or the Rychlik 1990 formula (0.3·Tm_primer + 0.7·Tm_product − 14.9), with a ±3°C gradient window and primer-Tm mismatch warning. Derived from Rychlik 1990, Innis & Gelfand 1990, Lorenz 2012. Lab-planning use only.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/annealing-temperature-calculator' \
-H 'Content-Type: application/json' \
-d '{"rule":"simple","forwardTm":62,"reverseTm":60,"productTm":85,"decimalPlaces":1}'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/annealing-temperature-calculator| Name | Type | Required | Description |
|---|---|---|---|
| rule | select | Yes | Simple rule uses the lower primer Tm; Rychlik also weighs the product Tm. |
| forwardTm | number | Yes | Melting temperature of the forward primer. |
| reverseTm | number | Yes | Melting temperature of the reverse primer. |
| productTm | number | Yes | Amplicon melting temperature (typically 75–90°C for a 100–500 bp product); used by the Rychlik formula. |
| 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-annealing-temperature-calculator": {
"name": "annealing-temperature-calculator",
"description": "PCR Ta by the simple rule (lower primer Tm − 5°C) or the Rychlik 1990 formula (0.3·Tm_primer + 0.7·Tm_product − 14.9), with a ±3°C gradient window and primer-Tm mismatch warning. Derived from Rychlik 1990, Innis & Gelfand 1990, Lorenz 2012. Lab-planning use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=annealing-temperature-calculator",
"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": "annealing-temperature-calculator",
"arguments": {
"rule": "simple",
"forwardTm": 62,
"reverseTm": 60,
"productTm": 85,
"decimalPlaces": 1
}
}
}Questions or issues? Contact [email protected]
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}