# Fuel Consumption Converter AI Agent Connect

> Deterministic bidirectional fuel efficiency conversion and trip cost estimation.

## Overview
- **Category:** transportation
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_qpx8Gfif3KjXeCO3X2Y9KPtzwQ4FFkuuperZ1gJ8/ai-agent-connect
- **Tags:** fuel, conversion, efficiency, mpg, cost-calculator

## Description

This MCP server provides precise tools for fuel efficiency calculations. Use `convert_efficiency` to transform values between mpg US, mpg UK, km/L, and L/100km. Use `calculate_trip_cost` to estimate travel expenses based on distance and fuel price, or `validate_efficiency_range` to check if a vehicle's efficiency is physically plausible.

## Tools

### calculate_trip_cost
Calculates the monetary cost of a trip based on distance, fuel price, and efficiency

### convert_efficiency
Performs bidirectional conversion between fuel efficiency units

### validate_efficiency_range
Checks if a fuel efficiency value is within realistic physical bounds

## Prompt Examples

**Prompt:** 
```
Convert 30 mpg US to other units.
```

**Response:** 
```
30 mpg US is equivalent to 36.0285 mpg UK, 12.7543 km/L, and 7.8393 L/100km.
```

**Prompt:** 
```
How much will a 500 km trip cost if fuel is 1.50 per liter and efficiency is 15 km/L?
```

**Response:** 
```
The total cost for the 500 km trip will be 50.00 USD.
```

**Prompt:** 
```
Is 250 mpg US a realistic efficiency?
```

**Response:** 
```
No, an efficiency of 250 mpg US is considered unrealistic.
```

## Frequently Asked Questions

**How do I convert mpg US to L/100km?**
You can use the `convert_efficiency` tool by providing the value and setting the source unit to `mpg_us`.

**Can I calculate the cost of a long road trip?**
Yes, use the `calculate_trip_cost` tool with your trip distance, fuel price, and vehicle efficiency.

**What happens if I enter an unrealistic efficiency value?**
The `validate_efficiency_range` tool will flag values below 1 mpg or above 200 mpg as unrealistic.
