# Inorganic Nomenclature Calculator AI Agent Connect

> Converts chemical formulas into IUPAC systematic names, common names, and validated formulas.

## Overview
- **Category:** education
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_IfinLu4chykBbuzpUiC4RwJs5LpECURqh3Albcr1/ai-agent-connect
- **Tags:** iupac, inorganic, chemistry, nomenclature, formula

## Description

This MCP server provides precise chemical identification tools for inorganic compounds. It allows AI agents to determine the formal IUPAC systematic name using `get_systematic_name`, retrieve widely recognized traditional names via `get_common_name`, and obtain properly formatted chemical formulas with `get_validated_formula`. It also categorizes substances into families like Salts, Oxoacids, or Coordination Compounds using `identify_compound_class`.

## Tools

### get_systematic_name
Provides the formal, rule-based IUPAC name for a given chemical entity

### get_validated_formula
Returns the correctly formatted chemical formula

### identify_compound_class
Categorizes the compound into its specific chemical family

### get_common_name
Retrieves the widely recognized traditional name for a compound

## Prompt Examples

**Prompt:** 
```
What is the IUPAC name for Fe2O3?
```

**Response:** 
```
The systematic IUPAC name for Fe2O3 is iron(III) oxide.
```

**Prompt:** 
```
Give me the common name for NaCl.
```

**Response:** 
```
The common name for NaCl is sodium chloride.
```

**Prompt:** 
```
What type of compound is H2SO4?
```

**Response:** 
```
H2SO4 is classified as an Oxoacid.
```

## Frequently Asked Questions

**Can I use this for coordination compounds?**
Yes, the `identify_compound_class` tool can detect coordination compounds, and `get_systematic_name` provides the correct IUPAC naming for complex structures.

**Does it support common names?**
Yes, you can use `get_common_name` to find traditional names like 'Soda ash' for Sodium carbonate.

**How are formulas formatted?**
The `get_validated_formula` tool ensures all element symbols follow standard capitalization and proper stoichiometry.
