# Hypoglycemia Recovery Protocol AI Agent Connect

> Deterministic 'Rule of 15' calculator for immediate hypoglycemia treatment.

## Overview
- **Category:** health
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_jr4Vbn2kFEnBzWUiep0LpqiCMDnkuz3B5Z535IDa/ai-agent-connect
- **Tags:** diabetes, hypoglycemia, medical, health-tech, rule-of-15

## Description

This MCP server provides clinical decision support for managing hypoglycemic episodes using the standard 'Rule of 15' protocol. It calculates the exact amount of carbohydrates needed based on the selected source to ensure a consistent 15g dose. Users can determine if immediate treatment is required, predict blood glucose rise using an Insulin Sensitivity Factor (ISF), and identify if a second round of treatment is necessary. Use `calculate_hypoglycemia_intervention` to get a full treatment plan, `validate_carb_source_availability` to check supported sources, or `get_carb_density_conversion` for specific carbohydrate density data.

## Tools

### validate_carb_source_availability
Verify if a carb source is supported

### calculate_hypoglycemia_intervention


### get_carb_density_conversion
Get conversion constants for carb sources

## Prompt Examples

**Prompt:** 
```
My blood glucose is 65 mg/dL. I have juice available. My ISF is 50. What should I do?
```

**Response:** 
```
Treatment is required. You should consume 125ml of juice. This is expected to raise your blood glucose by 750 mg/dL, resulting in a projected blood glucose of 815 mg/dL.
```

**Prompt:** 
```
I have 55 mg/dL blood glucose. I'm using glucose tabs. My ISF is 40. What is the plan?
```

**Response:** 
```
Treatment is required. Consume 4 tabs of glucose. This will result in an expected rise of 600 mg/dL, with a projected blood glucose of 655 mg/dL.
```

**Prompt:** 
```
Is honey a valid source for the hypoglycemia protocol?
```

**Response:** 
```
Yes, honey is a supported carbohydrate source for this protocol.
```

## Frequently Asked Questions

**What is the Rule of 15?**
The Rule of 15 is a standard medical guideline where an individual consumes 15 grams of fast-acting carbohydrates, waits 15 minutes, and then re-tests their blood glucose levels.

**How do I know if I need treatment?**
You can use `calculate_hypoglycemia_intervention` to check if your current blood glucose level requires immediate corrective action.

**Which carbohydrate sources are supported?**
The protocol supports glucose tablets, juice, regular soda, and honey. You can verify any source using `validate_carb_source_availability`.
