Science & Education
k = A·e^(−Ea/RT) solved for k, A, or Ea (two-point form), with Ea in kJ/mol and kcal/mol.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/arrhenius-equation-calculator' \
-H 'Content-Type: application/json' \
-d '{"solveFor":"k","aFactor":10000000000000,"rateConstant":0,"ea":75,"eaUnit":"kJ","temp":298.15,"tUnit":"K","k1":0,"t1":0,"k2":0,"t2":0}'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/arrhenius-equation-calculator| Name | Type | Required | Description |
|---|---|---|---|
| solveFor | select | Yes | — |
| aFactor | number | No | — |
| rateConstant | number | No | — |
| ea | number | No | — |
| eaUnit | select | Yes | — |
| temp |
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-arrhenius-equation-calculator": {
"name": "arrhenius-equation-calculator",
"description": "k = A·e^(−Ea/RT) solved for k, A, or Ea (two-point form), with Ea in kJ/mol and kcal/mol.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=arrhenius-equation-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": "arrhenius-equation-calculator",
"arguments": {
"solveFor": "k",
"aFactor": 10000000000000,
"rateConstant": 0,
"ea": 75,
"eaUnit": "kJ",
"temp": 298.15,
"tUnit": "K",
"k1": 0,
"t1": 0,
"k2": 0,
"t2": 0
}
}
}Questions or issues? Contact [email protected]
| number |
| No |
| — |
| tUnit | select | Yes | — |
| k1 | number | No | — |
| t1 | number | No | — |
| k2 | number | No | — |
| t2 | number | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}