# Pet Medication Dosage Calculator AI Agent Connect

> Deterministic pet medication dosage calculator with species-specific safety checks.

## Overview
- **Category:** health
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_BMSHscGA2mX8MOIdGOh1iZ3ePo3gpiZjlplLghpR/ai-agent-connect
- **Tags:** pets, dosage, veterinary, medication, safety

## Description

This MCP server provides precise medication administration calculations for pets. It handles species-specific safety thresholds for dogs and cats, automatically adjusts for pediatric and geriatric life stages, and converts weight between kg and lbs. Use `calculate_single_dose` to find individual administration amounts, `calculate_daily_requirements` for 24-hour totals, and `get_syringe_markings` to assist with liquid dosing accuracy.

## Tools

### get_syringe_markings
Provides the volume per individual marking on a syringe for liquid medication

### calculate_daily_requirements
Calculates the total amount of medication required for a full 24-hour period

### calculate_single_dose
Determines the specific amount of medication to be given in a single administration

## Prompt Examples

**Prompt:** 
```
Calculate a single dose for a 5kg dog receiving 10mg/kg of liquid medication, given twice daily.
```

**Response:** 
```
The dose for this dog is 2.5 ml per administration.
```

**Prompt:** 
```
What is the total daily requirement for a 15lb cat taking 5mg/kg of a tablet medication, once daily?
```

**Response:** 
```
The total daily requirement is 0.34 tablets.
```

**Prompt:** 
```
I have a 3ml syringe. How much volume does each marking represent for a 1.5ml dose?
```

**Response:** 
```
Each marking on the syringe represents 0.1 ml.
```

## Frequently Asked Questions

**How does the calculator handle different animal ages?**
The calculator applies specific multipliers for pediatric animals (under 6 months) and geriatric animals (over 10 years) to ensure dosage rates remain within safe physiological limits.

**Can I use this for both liquid and tablet medications?**
Yes. By using `calculate_single_dose`, you can specify if the medication is liquid (returning ml) or a tablet (returning pill count).

**What happens if a dosage is too high?**
The `calculate_single_dose` tool compares the prescribed rate against species-specific safety thresholds. If the rate is too high, it flags the dose as dangerous and provides a warning message.
