# Cross-Border Proxy Shipping Calculator AI Agent Connect

> Calculate volumetric weight and shipping costs for China-Japan proxy services.

## Overview
- **Category:** e-commerce
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_XHptvu5bSUdA2qhEaZ41DbF65q5eQpyzzFywqKNJ/ai-agent-connect
- **Tags:** shipping, proxy, volumetric, logistics, jpy

## Description

This MCP server provides precise shipping calculations for proxy services operating between China and Japan. It determines the volumetric weight based on package dimensions and the selected shipping method, calculates the final billable weight by rounding up to the nearest 0.5 kg, and estimates the total shipping cost in JPY. Use `calculate_shipping_metrics` to find the weight used for billing and `estimate_shipping_cost` to get the final price.

## Tools

### calculate_shipping_metrics
Calculate volumetric and billable weight for a package

### estimate_shipping_cost
Estimate the shipping cost in JPY

### get_shipping_method_info
Get information about a shipping method

## Prompt Examples

**Prompt:** 
```
What is the billable weight for a 2kg package that is 30x30x30 cm using EMS?
```

**Response:** 
```
The volumetric weight is 4.5 kg, so the billable weight is 4.5 kg.
```

**Prompt:** 
```
How much will it cost to ship a 5kg package via Sea shipping?
```

**Response:** 
```
The estimated shipping cost for 5kg via Sea is 2500 JPY.
```

**Prompt:** 
```
Get info about the SAL shipping method.
```

**Response:** 
```
SAL is an Economy service that uses a divisor of 8000 for volumetric calculations.
```

## Frequently Asked Questions

**How is volumetric weight calculated?**
Volumetric weight is calculated by dividing the package volume by 6000 for EMS/DHL or 8000 for SAL/Sea.

**What is billable weight?**
Billable weight is the higher of the actual weight or the volumetric weight, rounded up to the nearest 0.5 kg.

**Can I use this for DHL shipments?**
Yes, you can use `estimate_shipping_cost` to calculate costs for DHL using the appropriate weight metrics.
