Health
Annual personal CO₂e from diet, energy, fuels, flights, transit, and waste with per-category breakdown and target comparisons.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/carbon-footprint-calculator' \
-H 'Content-Type: application/json' \
-d '{"diet":"medium-meat","electricityKwh":2000,"gridIntensity":"0.44","naturalGasM3":300,"gasolineL":600,"dieselL":0,"flightShortKm":0,"flightLongKm":10000,"transitKm":3000,"wasteKg":200}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/carbon-footprint-calculator| Name | Type | Required | Description |
|---|---|---|---|
| diet | select | Yes | — |
| electricityKwh | number | Yes | Household or personal electricity consumption per year. |
| gridIntensity | select | Yes | — |
| naturalGasM3 | number | Yes | Heating/cooking gas — factor 2.02 kg CO₂e per m³. |
| gasolineL | number | Yes | Fuel burned in petrol cars — factor 2.31 kg CO₂e per litre. |
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-carbon-footprint-calculator": {
"name": "carbon-footprint-calculator",
"description": "Annual personal CO₂e from diet, energy, fuels, flights, transit, and waste with per-category breakdown and target comparisons.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=carbon-footprint-calculator",
"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": "carbon-footprint-calculator",
"arguments": {
"diet": "medium-meat",
"electricityKwh": 2000,
"gridIntensity": "0.44",
"naturalGasM3": 300,
"gasolineL": 600,
"dieselL": 0,
"flightShortKm": 0,
"flightLongKm": 10000,
"transitKm": 3000,
"wasteKg": 200
}
}
}Questions or issues? Contact [email protected]
| dieselL | number | Yes | Fuel burned in diesel cars — factor 2.68 kg CO₂e per litre. |
| flightShortKm | number | Yes | Domestic/regional flying — factor 0.15 kg CO₂e per passenger-km, radiative forcing excluded. |
| flightLongKm | number | Yes | Intercontinental flying — factor 0.11 kg CO₂e per passenger-km, radiative forcing excluded. |
| transitKm | number | Yes | Bus and rail travel — factor 0.04 kg CO₂e per passenger-km. |
| wasteKg | number | Yes | Landfilled mixed household waste — factor 0.5 kg CO₂e per kg. |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}