# Microbial Growth Rate Calculator AI Agent Connect

> Calculate specific growth rate, doubling time, and growth yield for microbial populations.

## Overview
- **Category:** science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_FLCgV3mM3XoYz4JHuKhBiDInMAr0mfcCNsbkqICy/ai-agent-connect
- **Tags:** microbiology, kinetics, growth-rate, biomass, data-analysis

## Description

This MCP server provides essential kinetic modeling tools for microbiologists. It allows AI agents to determine fundamental growth parameters from time-series measurements of cell density or optical density. Use `calculate_growth_kinetics` to find the specific growth rate and doubling time, `calculate_growth_yield` to measure biomass efficiency, `analyze_growth_phase` to identify growth stages, and `validate_measurement_consistency` to ensure data quality for kinetic modeling.

## Tools

### analyze_growth_phase
Identify which growth phase a specific measurement point belongs to

### calculate_growth_kinetics
Determine fundamental growth parameters (specific growth rate and doubling time) from two measurement points

### calculate_growth_yield
Determine how efficiently microbes converted substrate into biomass

### validate_measurement_consistency
Ensure measurements are suitable for kinetic modeling by checking biological plausibility

## Prompt Examples

**Prompt:** 
```
Calculate the growth kinetics if the initial OD was 0.1 and the final OD was 0.8 after 4 hours.
```

**Response:** 
```
The specific growth rate is 0.470 and the doubling time is 1.47 hours.
```

**Prompt:** 
```
What is the growth yield if the biomass increased by 5.0 units and 10.0 units of substrate were consumed?
```

**Response:** 
```
The yield coefficient is 0.5.
```

**Prompt:** 
```
Identify the growth phase for this data: [{'time': 0, 'value': 0.1}, {'time': 1, 'value': 0.11}, {'time': 2, 'value': 0.12}] with a threshold of 0.5.
```

**Response:** 
```
The current phase is Lag and it is not exponential.
```

## Frequently Asked Questions

**How do I calculate the doubling time?**
You can use the `calculate_growth_kinetics` tool by providing the initial and final cell counts or optical density values along with the time interval between them.

**Can I use Optical Density (OD) instead of cell counts?**
Yes, the tools are designed to work with both direct cell counts and Optical Density (OD) measurements.

**How can I check if my growth data is reliable?**
Use the `validate_measurement_consistency` tool to check if your measurements are biologically plausible and suitable for kinetic modeling.
