# Le Chatelier Prediction AI Agent Connect

> Predict chemical equilibrium shifts caused by changes in concentration, pressure, or temperature.

## Overview
- **Category:** education
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_Y9PawYFa2An7NdQcVvvHEwvbozn719CGWtjYjyWU/ai-agent-connect
- **Tags:** chemistry, equilibrium, le-chatelier, science, thermodynamics

## Description

This MCP server provides tools to predict how a chemical system at equilibrium responds to external disturbances. By applying Le Chatelier's Principle, the server calculates the direction of the equilibrium shift when concentration, pressure, or temperature is altered. Use `predict_concentration_shift` to analyze changes in component amounts, `predict_pressure_shift` for gas-phase pressure changes, and `predict_temperature_shift` to determine how thermal changes affect the reaction based on its enthalpy.

## Tools

### get_equilibrium_state
Provides a summary of the current chemical system status before a disturbance

### predict_concentration_shift
Determines the direction and magnitude of equilibrium shift when a component's concentration is altered

### predict_pressure_shift
Determines the direction of equilibrium shift when system pressure or volume is changed

### predict_temperature_shift
Predicts how temperature changes affect the equilibrium based on the reaction's enthalpy

## Prompt Examples

**Prompt:** 
```
If I have 2 moles of A and 1 mole of B in an equilibrium, and I add 0.5 moles of A, what happens?
```

**Response:** 
```
The equilibrium will shift in the forward direction to consume the added reactant.
```

**Prompt:** 
```
What happens to an exothermic reaction if the temperature is increased?
```

**Response:** 
```
The equilibrium will shift toward the reactants.
```

**Prompt:** 
```
In a gas reaction with 3 moles of reactant gas and 1 mole of product gas, what happens if pressure increases?
```

**Response:** 
```
The equilibrium will shift toward the side with fewer moles of gas, which is the product side.
```

## Frequently Asked Questions

**How do I predict a shift caused by adding more reactant?**
You can use the `predict_concentration_shift` tool. Provide the current reactants and products, then specify the component being added in the disturbance object.

**How does temperature affect an exothermic reaction?**
For an exothermic reaction, increasing the temperature will shift the equilibrium toward the reactants. You can verify this using `predict_temperature_shift`.

**Can I predict shifts in gas-phase reactions due to pressure changes?**
Yes, the `predict_pressure_shift` tool allows you to input the moles of gaseous reactants and products to determine the shift direction when pressure is increased or decreased.
