Skip to main content
Glama
Schimmilab

tibber-mcp-server

by Schimmilab

Get Consumption Report

get_consumption_report

Retrieve aggregated consumption and cost report for a selected period (week, month, year) with offset to compare against previous periods.

Instructions

Aggregierter Verbrauchs-/Kostenreport mit Vergleich zur Vorperiode.

period: 'week', 'month' oder 'year'. offset: 0 = laufende Periode, 1 = vorherige, usw.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
offsetNo
periodNomonth
home_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the core behavioral trait—'with comparison to the previous period'—and explains offset semantics. However, it does not clarify whether the data is historical, real-time, or subject to any aggregation delays, nor does it describe auth or rate-limit behavior. For a simple read-only report tool, this is adequate but not rich.

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?

The description is compact and front-loaded. The first sentence defines the tool's purpose, and the second covers parameter semantics. Every sentence earns its place with no fluff or repetition.

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

Completeness3/5

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

The tool is simple, has an output schema, and no required parameters, so the description does not need to explain return values. But it lacks usage guidance relative to siblings and fails to document home_id semantics. The explanation of period and offset is enough for basic invocation, but an agent still has to guess at edge cases like null home_id.

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 description coverage is 0%, so the description must compensate. It does so well for period ('week', 'month' or 'year') and offset (0 = current period, 1 = previous, etc.), adding meaning far beyond the bare schema defaults. However, home_id is left unexplained, which is a notable gap given it is one of only three parameters.

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

Purpose4/5

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

The description clearly states the resource: an aggregated consumption/cost report with comparison to the previous period. This distinguishes it from siblings like get_consumption, which presumably returns raw consumption data, and get_current_price, which returns price data. It is specific about the report's nature, though it does not explicitly name an alternative tool.

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

Usage Guidelines2/5

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

The description explains what the tool does but gives no guidance on when to use it versus alternatives such as get_consumption or get_current_price. There is no mention of exclusions, prerequisites, or scenarios where another sibling would be more appropriate.

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