Education
PCR product from ideal exponential amplification copies = template × (1 + e)^n (2^n at 100%), with ng conversion from amplicon length, plateau flag (~10¹²–10¹³ molecules), and >35-cycle warning. Derived from Saiki 1988, 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/pcr-cycle-number' \
-H 'Content-Type: application/json' \
-d '{"templateCopies":1000,"cycles":30,"efficiencyPercent":100,"ampliconLengthBp":500,"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/pcr-cycle-number| Name | Type | Required | Description |
|---|---|---|---|
| templateCopies | number | Yes | Starting number of target molecules (see the companion copy-number tool). |
| cycles | number | Yes | Number of thermal cycles (most protocols: 25–35). |
| efficiencyPercent | number | Yes | Per-cycle amplification efficiency; 100% = perfect doubling, real PCR typically 70–100%. |
| ampliconLengthBp | number | No | Amplicon length in base pairs for the ng-yield conversion; enter 0 to skip. |
| 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-pcr-cycle-number": {
"name": "pcr-cycle-number",
"description": "PCR product from ideal exponential amplification copies = template × (1 + e)^n (2^n at 100%), with ng conversion from amplicon length, plateau flag (~10¹²–10¹³ molecules), and >35-cycle warning. Derived from Saiki 1988, Innis & Gelfand 1990, Lorenz 2012. Lab-planning use only.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=pcr-cycle-number",
"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": "pcr-cycle-number",
"arguments": {
"templateCopies": 1000,
"cycles": 30,
"efficiencyPercent": 100,
"ampliconLengthBp": 500,
"decimalPlaces": 2
}
}
}Questions or issues? Contact [email protected]
| No |
| — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}