Skip to main content
Glama
manas-katyal

EnergiMCP

by manas-katyal

Carbon intensity

get_carbon_intensity
Read-only

Get Danish grid carbon intensity in 5-minute intervals. Find the greenest time to run power-hungry tasks using current readings and forecast.

Instructions

Grams of CO2 per kWh on the Danish grid, in 5-minute resolution, with an optional forecast. Use it to answer when to run something power-hungry. Returns the latest reading, the range over the window, and the greenest upcoming period when the forecast is included.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoDefault now. Danish local time. Either a timestamp (2026-01-01 or 2026-01-01T00:00) or a relative expression: now, StartOfDay, StartOfMonth, StartOfYear, optionally with an ISO 8601 offset such as now-P1D, now-PT15M, StartOfYear, now+P1D.
startNoDefault now-PT1H. Danish local time. Either a timestamp (2026-01-01 or 2026-01-01T00:00) or a relative expression: now, StartOfDay, StartOfMonth, StartOfYear, optionally with an ISO 8601 offset such as now-P1D, now-PT15M, StartOfYear, now+P1D.
price_areaNoDK1 is west of the Great Belt, DK2 is eastDK1
include_forecastNoAlso read CO2EmisProg for the hours ahead

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds meaningful behavior beyond annotations: 5-minute resolution, optional forecast, and the specific return values (latest reading, range over the window, greenest upcoming period). No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences with no redundancy: definition, use case, and return values are front-loaded and each earns its place. There is no filler or repeated schema information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a read-only look-up tool with no output schema, the description adequately covers what the tool does, when to use it, and what it returns. It could be more complete by explicitly contrasting with sibling tools, but that gap is minor given the strong schema and annotations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema documents all parameters well. The description adds value by linking the forecast flag to the 'greenest upcoming period' return and the start/end window to the returned range, which enriches the schema's bare parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the resource (CO2 per kWh on the Danish grid), resolution (5-minute), and optional forecast, and clearly distinguishes it from siblings like get_electricity_prices and get_power_system_now by its focus on carbon intensity. The use-case phrasing 'Use it to answer when to run something power-hungry' makes the tool's purpose actionable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says when to use the tool ('when to run something power-hungry'), giving clear context. It doesn't explicitly name sibling alternatives or exclusion conditions, but the unique carbon-intensity resource makes the intended use evident against the sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.