# Soil Salinity Assessment AI Agent Connect

> Analyze soil salinity, TDS, osmotic potential, and predicted crop yield impacts.

## Overview
- **Category:** agriculture
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_NJeFvxLVEk3dtzKl6tolZyDGADkEPpWlaFR0kZyA/ai-agent-connect
- **Tags:** soil, salinity, agriculture, ec, crop-yield

## Description

This MCP server provides essential tools for agricultural soil analysis. It allows users to standardize electrical conductivity (EC) measurements using `convert_ec_method`, derive chemical and physical metrics with `calculate_tds_and_osmotic_potential`, and categorize soil health via `assess_salinity_classification`. Additionally, it predicts productivity loss through `predict_yield_impact` by evaluating how specific crops respond to salt concentrations in different soil textures.

## Tools

### calculate_tds_and_osmotic_potential
Derives TDS and Osmotic Potential from a standardized EC value

### convert_ec_method
Standardizes EC measurements between different extraction techniques

### predict_yield_impact
Predicts yield reduction for a specific crop due to salinity

### assess_salinity_classification
Classifies the soil into a qualitative salinity tier

## Prompt Examples

**Prompt:** 
```
Convert an EC value of 4.5 from 1:2 extract to saturation paste.
```

**Response:** 
```
The converted EC value for saturation paste is 2.25.
```

**Prompt:** 
```
What is the salinity level for an EC of 8.0?
```

**Response:** 
```
The soil is classified as Strongly saline.
```

**Prompt:** 
```
How much yield reduction will corn face with an EC of 3.0 in clay soil?
```

**Response:** 
```
The predicted yield reduction for corn is 15%.
```

## Frequently Asked Questions

**How do I convert between different EC measurement methods?**
You can use the `convert_ec_method` tool to transform values between saturation paste and 1:2 extract methods.

**Can I predict how much my crop yield will decrease?**
Yes, the `predict_yield_impact` tool estimates the percentage decrease in productivity based on the EC value, the specific crop type, and the soil texture.

**What salinity levels can be identified?**
The `assess_salinity_classification` tool classifies soil into four tiers: Non-saline, Slightly saline, Moderately saline, or Strongly saline.
