# Thermodynamics Calculator AI Agent Connect

> Calculate enthalpy, entropy, Gibbs free energy, and equilibrium constants for chemical reactions.

## Overview
- **Category:** science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_aetMfkaYGyVRdXNnk04tzL31e13qzoyZiX95BDDq/ai-agent-connect
- **Tags:** thermodynamics, chemistry, enthalpy, entropy, equilibrium

## Description

This MCP server provides a suite of tools to calculate fundamental thermodynamic properties of chemical reactions. It allows users to determine enthalpy changes (ΔH), entropy changes (ΔS), Gibbs free energy (ΔG), and equilibrium constants (K) at specific temperatures. The server accounts for heat capacity and phase transitions to ensure accurate predictions of reaction spontaneity. Use `query_reaction_properties` to get a full thermodynamic profile, `calculate_equilibrium_constant` for equilibrium values, `get_standard_state_data` to look up species properties, and `predict_phase_change_impact` to evaluate how phase shifts affect reaction spontaneity.

## Tools

### calculate_equilibrium_constant
Determines the equilibrium constant (K) for a reaction at a specific temperature

### get_standard_state_data
Retrieves the standard state data for specific chemical species

### predict_phase_change_impact
Evaluates how a phase transition affects the spontaneity of a reaction at a target temperature

### query_reaction_properties
Calculates the fundamental thermodynamic changes (ΔH, ΔS, ΔG) for a specific chemical reaction at a given temperature

## Prompt Examples

**Prompt:** 
```
Calculate the thermodynamic properties for the reaction 2H2 + O2 -> 2H2O at 298.15 K.
```

**Response:** 
```
The reaction enthalpy (ΔH) is -571.6 kJ/mol, the entropy change (ΔS) is -133.4 J/mol·K, and the Gibbs free energy (ΔG) is -471.1 kJ/mol, indicating a spontaneous reaction.
```

**Prompt:** 
```
What is the equilibrium constant for a reaction with a ΔG of -20000 J/mol at 298.15 K?
```

**Response:** 
```
The equilibrium constant (K) at 298.15 K is approximately 2.37e+3.
```

**Prompt:** 
```
Get the standard state data for H2O.
```

**Response:** 
```
For H2O: Enthalpy of formation is -285.8 kJ/mol, Entropy is 69.9 J/mol·K, and Heat Capacity is 75.3 J/mol·K.
```

## Frequently Asked Questions

**How do I calculate the spontaneity of a reaction?**
You can use the `query_reaction_properties` tool. It calculates the Gibbs free energy (ΔG); if the result is less than zero, the reaction is spontaneous.

**Can I account for phase transitions in my calculations?**
Yes, by providing phase transition data to the `query_reaction_properties` tool or using `predict_phase_change_impact` to see how transitions affect spontaneity.

**Where can I find standard state data for specific chemicals?**
Use the `get_standard_state_data` tool by providing the chemical formula to retrieve enthalpy, entropy, and heat capacity.
