Math & Numbers
Вычисляет энергию Гиббса ΔG = ΔH − TΔS из ΔH, ΔS и температуры; определяет самопроизвольность, температуру равновесия и константу K.
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/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}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/thermodynamics-gibbs-calculator| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| mode | select | Нет | — |
| dH | number | Нет | Negative = exothermic, positive = endothermic. |
| dS | number | Нет | Negative = more ordered, positive = more disordered. Units are J (not kJ). |
| temperature | number | Нет | Absolute temperature. Used in 'Find ΔG' mode. |
| tempUnit | select | Нет |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-thermodynamics-gibbs-calculator": {
"name": "thermodynamics-gibbs-calculator",
"description": "Вычисляет энергию Гиббса ΔG = ΔH − TΔS из ΔH, ΔS и температуры; определяет самопроизвольность, температуру равновесия и константу K.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermodynamics-gibbs-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"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
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]
| — |
| decimalPlaces | number | Нет | — |
JSON-результат
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}