Skip to main content
Glama

Energiefuchs

Jahresverbrauch schätzen

estimate_consumption
Read-only

Schätzt den Jahresverbrauch, wenn der Nutzer ihn nicht kennt. Bei customer_type=gewerbe liefert dies einen festen Default-Wert (10.000 kWh Strom / 30.000 kWh Gas), der dem Nutzer explizit zur Bestätigung vorgelegt werden MUSS ("ist das für dich in Ordnung?") — niemals kommentarlos übernehmen. Bei customer_type=privat: persons für Strom, living_area_m2 (+ is_altbau) für Gas. Nenne dem Nutzer NUR estimated_annual_kwh plus die Bestätigungsfrage — NICHT das basis-Feld/die Herleitung vorrechnen (z. B. NICHT '3 Personen × 1.000 kWh + 500 kWh Sockel' erklären), das ist unnötiges Detail.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
personsNoNur für customer_type=privat, energy_type=strom.
is_altbauNo
energy_typeYes
customer_typeYes
living_area_m2NoNur für customer_type=privat, energy_type=gas.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
basisYes
default_usedYes
estimated_annual_kwhYes
requires_confirmationYes

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the read-only annotation, the description reveals key behavioral traits: fixed defaults for gewerbe (10.000 kWh Strom / 30.000 kWh Gas), the mandatory user confirmation ('ist das für dich in Ordnung?'), and the instruction to expose only estimated_annual_kwh, not the derivation. This is essential for correct agent behavior and exceeds what annotations provide.

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 front-loaded with the core purpose and then delivers the branching rules and output constraints in a compact paragraph. Every sentence contributes actionable information; there is no filler or repetition.

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

Completeness5/5

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

For a tool with branching logic and an output schema, the description covers all necessary operational detail: the two customer-type branches, the energy-type split, the confirmation requirement, and the exact wording of what to present. The output schema handles return-value details, so nothing critical is missing.

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?

With only 40% schema coverage, the description compensates by mapping persons to privat+Strom and living_area_m2 (+ is_altbau) to privat+Gas, clarifying the otherwise undocumented is_altbau. It doesn't cover edge cases like irrelevant parameter combinations, but adds meaningful semantics beyond the schema.

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 opens with a specific verb and resource: 'Schätzt den Jahresverbrauch' (estimates annual consumption), and adds the condition 'wenn der Nutzer ihn nicht kennt' (when the user doesn't know it). This clearly distinguishes it from siblings like search_tariffs or quote, since no other tool estimates consumption.

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 states when to use the tool ('wenn der Nutzer ihn nicht kennt'), giving clear context. However, it does not name alternatives or when-not-to-use conditions, so it stops short of a 5.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool maps to a distinct step in the user journey: estimating consumption, retrieving requirements, looking up the network operator, quoting a tariff, searching/reading guides, listing tariffs, and starting a switch. Although search_flexenergy_ratgeber and read_flexenergy_ratgeber_article are related, their search-vs-read boundary is clear.

Naming Consistency4/5

Most tools follow a clear verb_object snake_case pattern (estimate_consumption, search_tariffs, start_switch). The main deviation is 'quote', which lacks an explicit object and is somewhat ambiguous as verb vs noun; otherwise the naming is consistent.

Tool Count5/5

Eight tools is well-scoped for a focused energy-advisory and switching assistant. Each tool supports a distinct part of the conversation without redundant utilities or excessive surface area.

Completeness5/5

The tool surface covers the full core flow: estimate usage, search tariffs, calculate a quote, provide switch link, plus supporting lookup and content-reading tools. There are no obvious dead ends or missing operations for the stated purpose.

Resources