Math & Numbers
Convert fuel consumption / fuel economy between L/100km, miles per US gallon (mpg US), miles per Imperial gallon (mpg UK), and km/L. mpg and L/100km are reciprocal (higher mpg = lower L/100km), so conversion goes through the km/L axis, not a single multiplier. Defining constants are exact by law: 1 US gallon = 3.785411784 L (NIST HB 44), 1 Imperial gallon = 4.54609 L (UK W&M Act 1985), 1 mile = 1.609344 km (1959 agreement). Reference: a compact car at ~6 L/100km ≈ 39 mpg US ≈ 47 mpg UK.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/fuel-consumption-converter' \
-H 'Content-Type: application/json' \
-d '{"inputUnit":"L/100km","value":6,"outputUnit":"mpgUS","decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/fuel-consumption-converter| Name | Type | Required | Description |
|---|---|---|---|
| inputUnit | select | No | — |
| value | number | Yes | Fuel consumption in the selected Input unit. Must be strictly positive. |
| outputUnit | select | No | — |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-fuel-consumption-converter": {
"name": "fuel-consumption-converter",
"description": "Convert fuel consumption / fuel economy between L/100km, miles per US gallon (mpg US), miles per Imperial gallon (mpg UK), and km/L. mpg and L/100km are reciprocal (higher mpg = lower L/100km), so conversion goes through the km/L axis, not a single multiplier. Defining constants are exact by law: 1 US gallon = 3.785411784 L (NIST HB 44), 1 Imperial gallon = 4.54609 L (UK W&M Act 1985), 1 mile = 1.609344 km (1959 agreement). Reference: a compact car at ~6 L/100km ≈ 39 mpg US ≈ 47 mpg UK.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=fuel-consumption-converter",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "fuel-consumption-converter",
"arguments": {
"inputUnit": "L/100km",
"value": 6,
"outputUnit": "mpgUS",
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]