Math & Numbers
Calculate Gibbs free energy ΔG = ΔH − TΔS, reaction spontaneity, equilibrium temperature, and equilibrium constant K.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/thermodynamics-gibbs-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"gibbs","dH":-726.4,"dS":-181,"temperature":298.15,"tempUnit":"kelvin","decimalPlaces":3}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/thermodynamics-gibbs-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| dH | number | No | Negative = exothermic, positive = endothermic. |
| dS | number | No | Negative = more ordered, positive = more disordered. Units are J (not kJ). |
| temperature | number | No | Absolute temperature. Used in 'Find ΔG' mode. |
| tempUnit | select | No | — |
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-thermodynamics-gibbs-calculator": {
"name": "thermodynamics-gibbs-calculator",
"description": "Calculate Gibbs free energy ΔG = ΔH − TΔS, reaction spontaneity, equilibrium temperature, and equilibrium constant K.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermodynamics-gibbs-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": "thermodynamics-gibbs-calculator",
"arguments": {
"mode": "gibbs",
"dH": -726.4,
"dS": -181,
"temperature": 298.15,
"tempUnit": "kelvin",
"decimalPlaces": 3
}
}
}Questions or issues? Contact [email protected]
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}