electricity-emission
Calculate carbon emissions from electricity consumption by inputting energy amount, unit, and region-specific grid mix data using Climatiq MCP Server.
Instructions
Calculate carbon emissions from electricity consumption based on energy amount and regional grid mix.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
energy | Yes | Amount of energy consumed | |
energy_unit | Yes | Energy unit (kWh, MWh, etc.) | |
region | No | Region code (e.g., US, GB, FR) representing the electricity grid location | US |
Input Schema (JSON Schema)
{
"properties": {
"energy": {
"description": "Amount of energy consumed",
"type": "number"
},
"energy_unit": {
"description": "Energy unit (kWh, MWh, etc.)",
"type": "string"
},
"region": {
"default": "US",
"description": "Region code (e.g., US, GB, FR) representing the electricity grid location",
"type": "string"
}
},
"required": [
"energy",
"energy_unit"
],
"type": "object"
}