# Singapore ERP Toll Calculator AI Agent Connect

> Calculate exact Singapore Electronic Road Pricing (ERP) costs for vehicles and routes.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_62WKmHrUZYgcjr90rsnaxkagQpZUOb7FXQoam4Qb/ai-agent-connect
- **Tags:** singapore, erp, toll, transport, calculator

## Description

This MCP server provides deterministic calculations for Singapore's Electronic Road Pricing (ERP) system. It allows AI agents to verify vehicle categories using `get_vehicle_validity`, determine specific toll costs for a single gantry via `get_single_gantry_toll`, or calculate the cumulative cost of a multi-gantry journey with `calculate_route_total_cost`. The tool uses fixed LTA rate cards to ensure precision for Cars, Motorcycles, Goods Vehicles, and Heavy Vehicles.

## Tools

### calculate_route_total_cost
Calculate the cumulative cost of a journey passing through multiple gantries

### get_single_gantry_toll
Determine the cost of passing through one specific gantry at a specific time

### get_vehicle_validity
Verify if a provided vehicle category is recognized by the ERP system

## Prompt Examples

**Prompt:** 
```
How much will it cost for a Car to pass through gantry code 'A1' at 08:30?
```

**Response:** 
```
The toll cost for a Car at gantry A1 at 08:30 is 4.00 SGD.
```

**Prompt:** 
```
Is 'Truck' a valid vehicle category for ERP?
```

**Response:** 
```
No, 'Truck' is not a recognized category. Please use 'Goods Vehicle' or 'Heavy Vehicle'.
```

**Prompt:** 
```
What is the total cost for a Motorcycle passing through gantries B1, B2, and B3 at 14:00?
```

**Response:** 
```
The total cost for the route is 2.50 SGD.
```

## Frequently Asked Questions

**How accurate are the toll calculations?**
The calculations are deterministic and based on fixed LTA rate cards, ensuring exact results for the specified vehicle category and time.

**Which vehicle types are supported?**
The system supports Car, Motorcycle, Goods Vehicle, and Heavy Vehicle categories.

**Can I calculate the cost for a whole trip?**
Yes, you can use the `calculate_route_total_cost` tool to find the total cost for a sequence of gantries.
