# Limiting Reagent Yield Calculator AI Agent Connect

> A precision stoichiometry engine for determining limiting reactants, theoretical yields, and efficiency metrics.

## Overview
- **Category:** education
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_RNgTkoRItWQQNISDr6iQNfVKs8wgSDgPVemqcrFm/ai-agent-connect
- **Tags:** stoichiometry, chemistry, yield, science, reaction

## Description

This MCP server provides a suite of precision stoichiometry tools for chemical analysis. It allows AI agents to identify limiting reagents using `analyze_reaction_composition`, determine maximum possible product amounts with `calculate_theoretical_yield`, evaluate reaction efficiency via `calculate_actual_and_percent_yield`, and assess mass usage efficiency through `calculate_atom_economy`. It is designed to handle balanced chemical equations and account for side reaction impacts.

## Tools

### analyze_reaction_composition
Identifies the stoichiometric roles and identifies the limiting reagent from a set of reactants

### calculate_actual_and_percent_yield
Calculates how much product was actually obtained and the efficiency of the reaction

### calculate_atom_economy
Evaluates the inherent efficiency of the chemical process regarding mass usage

### calculate_theoretical_yield
Determines the maximum possible mass or moles of the desired product

## Prompt Examples

**Prompt:** 
```
Find the limiting reagent for the reaction 2H2 + O2 -> 2H2O with 4 moles of H2 and 1 mole of O2.
```

**Response:** 
```
The limiting reagent is O2.
```

**Prompt:** 
```
Calculate the theoretical yield of H2O if 2 moles of H2 are used in the reaction 2H2 + O2 -> 2H2O.
```

**Response:** 
```
The theoretical yield is 36.02 grams of H2O.
```

**Prompt:** 
```
What is the atom economy for the reaction 2H2 + O2 -> 2H2O?
```

**Response:** 
```
The atom economy is 100%.
```

## Frequently Asked Questions

**How do I identify the limiting reagent?**
You can use the `analyze_reaction_composition` tool by providing the balanced chemical equation and the molar amounts of each reactant.

**Can this tool account for side reactions?**
Yes, the `calculate_actual_and_percent_yield` tool includes an optional parameter to account for reactant loss due to secondary processes.

**What is atom economy?**
Atom economy is a measure of how many atoms from the reactants end up in the desired product, which can be calculated using `calculate_atom_economy`.
