# Pediatric Dose Calculator MCP

> Pediatric Dose Calculator determines precise, weight-based medication dosages for children. This MCP first retrieves pharmacological constraints from specific drugs, then calculates the exact single dose needed based on a child's current weight. It also evaluates complex dosing schedules to flag potential overdose risks or deviations outside safe daily therapeutic limits.

## Overview
- **Category:** healthcare
- **Price:** Free
- **Tags:** pediatrics, dosage, pharmacology, safety, medication

## Description

Calculating pediatric medications requires intense precision; margins of error aren't an option. This MCP gives you the safety net you need, determining correct dosages for kids based on their weight and specific drug constraints. You simply input the medication details and the child’s weight. The system first checks the drug's minimum and maximum allowable thresholds. Then, it calculates the immediate single dose needed. For complex regimens involving multiple doses throughout the day, it assesses the total daily intake to make sure the dosage stays within safe limits. Vinkius hosts this MCP so your AI client can access this critical calculation engine whenever you need it.

## Tools

### calculate_single_dose
Calculates the precise amount of medication needed for one administration based on a child's weight.

### evaluate_dosage_regimen
Checks an entire sequence of doses to ensure total daily intake remains within safe limits.

### get_drug_dosage_specs
Retrieves the minimum, maximum single dose, and total daily safety thresholds for a specific medication.

## Prompt Examples

**Prompt:** 
```
What are the dosage limits for Paracetamol?
```

**Response:** 
```
For Paracetamol, the minimum dose is 10 mg/kg, the maximum single dose is 15 mg/kg, and the daily safety limit is 75 mg/kg.
```

**Prompt:** 
```
Calculate a single dose of Ibuprofen for a child weighing 12kg.
```

**Response:** 
```
The calculated dose for 12kg is 180 mg.
```

**Prompt:** 
```
Is it safe to give Amoxicillin 3 times a day to a 5kg child, with each dose being 250mg?
```

**Response:** 
```
Danger: The total daily dose of 750mg exceeds the safety limit for a 5kg child.
```

## Capabilities

### undefined
undefined

### undefined
undefined

### undefined
undefined

## Use Cases

### Checking a new antibiotic schedule
A pharmacist needs to verify if Amoxicillin given three times daily is safe for a 5kg child. They input the regimen, and the `evaluate_dosage_regimen` tool immediately warns them that the total daily dose exceeds the established safety limit.

### Calculating initial fever medication
A nurse needs to give Ibuprofen for a 12kg child. Instead of guessing, they use the `calculate_single_dose` tool to get the precise amount (180 mg), ensuring the dose is accurate every time.

### Validating drug limits
A doctor needs to confirm the safe range for Paracetamol. They run the `get_drug_dosage_specs` tool, which returns the minimum single dose (10 mg/kg), maximum single dose (15 mg/kg), and daily safety limit (75 mg/kg) instantly.

### Reviewing a transition of care
A clinic requires checking if a child's new medication schedule conflicts with their existing regimen. The AI client uses `evaluate_dosage_regimen` to ensure no drug crosses the total daily safety threshold.

## Benefits

- Know the hard limits immediately. You can use the `get_drug_dosage_specs` tool to pull minimum and maximum mg/kg thresholds for any medication, preventing initial dose errors.
- Avoid calculation mistakes with single doses. The `calculate_single_dose` tool takes a child's weight and spits out the exact amount needed for one administration, saving manual math time.
- Catch dangerous overdosages before they happen. Use `evaluate_dosage_regimen` to check an entire week's schedule against safety parameters, flagging total daily intake issues.
- Simplify complex charting. Instead of referencing multiple drug handbooks, your AI client handles the comparison between weight, single dose, and full regimen limits in one go.
- Reduce risk across departments. This MCP provides a consistent, standardized calculation method, whether you're working on inpatient orders or outpatient scripts.

## How It Works

The bottom line is you get immediate confirmation that the proposed drug regimen is within safe therapeutic parameters for a pediatric patient.

1. You provide the medication name and the relevant pharmacological parameters to check against safety thresholds.
2. The system calculates the specific single dose needed for a child based on their weight input.
3. It then reviews the entire dosing schedule, flagging any total daily intake that exceeds established safety limits.

## Frequently Asked Questions

**How does Pediatric Dose Calculator know the safety limits for a drug?**
It uses the `get_drug_dosage_specs` tool to retrieve established pharmacological constraints, including minimum and maximum dosage thresholds (mg/kg) from its database.

**Can I use Pediatric Dose Calculator for daily safety checks?**
Yes. The `evaluate_dosage_regimen` tool reviews the entire dosing schedule to ensure the cumulative total of all administered drugs does not exceed safe daily intake limits.

**What if my child weighs less than the minimum dose?**
The system uses the `get_drug_dosage_specs` tool to determine the precise minimum acceptable threshold, ensuring any calculated dosage respects that lower boundary.

**Is Pediatric Dose Calculator faster than calling a pharmacist?**
It provides instant calculation. While a human expert review is always best practice, this MCP gives you immediate verification on single doses and regimen safety checks.