# Thermal Analysis Interpreter AI Agent Connect

> Analyzes TGA, DSC, and DTA data to identify decomposition, phase transitions, and enthalpy.

## Overview
- **Category:** science
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_o8CVzaDw05OvWSgzAW5OORLOHGf1C5f9rayiIFYj/ai-agent-connect
- **Tags:** thermal-analysis, tga, dsc, dta, materials-science

## Description

This MCP server provides specialized tools for interpreting thermal analysis data. It allows AI agents to process Thermogravimetric Analysis (TGA), Differential Scanning Calorimetry (DSC), and Differential Thermal Analysis (DTA) datasets. Using `analyze_tga_stability`, agents can identify mass loss events and decomposition temperatures. The `calculate_phase_transitions` tool detects melting points and phase changes, while `quantify_enthalpy` calculates the energy associated with specific thermal events. For kinetic studies, `estimate_kinetics` provides activation energy and reaction order based on heating rates.

## Tools

### estimate_kinetics
Estimates the kinetic parameters of a decomposition process

### analyze_tga_stability
Identifies mass loss events and decomposition temperatures from TGA data

### calculate_phase_transitions
Detects phase changes and melting points from DSC or DTA data

### quantify_enthalpy
Calculates the energy associated with a specific thermal event

## Prompt Examples

**Prompt:** 
```
Analyze this TGA data: [{'temp': 100, 'mass': 1.0}, {'temp': 200, 'mass': 0.95}, {'temp': 300, 'mass': 0.7}].
```

**Response:** 
```
The TGA analysis shows a significant decomposition event starting near 200°C, with a total mass loss of 30%.
```

**Prompt:** 
```
What is the enthalpy for the transition between 150 and 180 degrees in this DSC data?
```

**Response:** 
```
The calculated enthalpy for the transition between 150 and 180 degrees is 45.2 J/g.
```

**Prompt:** 
```
Detect phase transitions in this DSC data: [{'temp': 50, 'heatFlow': 0.1}, {'temp': 150, 'heatFlow': 5.0}, {'temp': 250, 'heatFlow': 0.1}].
```

**Response:** 
```
A phase transition was detected at 150°C.
```

## Frequently Asked Questions

**What types of thermal data can this server process?**
The server processes TGA, DSC, and DTA data to extract stability, phase transition, and kinetic information.

**How do I use the TGA stability tool?**
You can use `analyze_tga_stability` by providing the temperature program as an array of temperature and mass points.

**Can I calculate enthalpy for a specific temperature range?**
Yes, the `quantify_enthalpy` tool calculates the energy associated with a transition between a specified start and end temperature.
