tibber-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TIBBER_API_TOKEN | Yes | Tibber API token for authentication |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_home_infoA | Alle Homes im Tibber-Account: Adresse, Tarifstatus, Zählpunkt und ob ein Tibber Pulse (Live-Daten) vorhanden ist. |
| get_current_priceB | Aktueller Strompreis mit Einordnung: Tibber-Level, Rang im Tagesverlauf und prozentuale Abweichung vom Tagesdurchschnitt. resolution: 'HOURLY' (Stundenpreis) oder 'QUARTER_HOURLY' (Preis der laufenden Viertelstunde — seit der 15-Minuten-Abrechnung der tatsächlich gültige Preis). |
| get_price_forecastA | Preise für heute und (falls schon publiziert) morgen, jeweils mit Min/Max/Durchschnitt und günstigstem/teuerstem Intervall. resolution: 'HOURLY' (24 Werte/Tag) oder 'QUARTER_HOURLY' (96 Werte/Tag). Die Felder heißen in beiden Rastern gleich ('hours', 'cheapest_hour') — im Viertelstundenraster meinen sie die Viertelstunde. |
| find_cheapest_hoursA | Findet die günstigsten Stunden für einen Verbraucher (Waschmaschine, Spülmaschine, E-Auto-Ladung). duration_hours: Laufzeit des Verbrauchers in Stunden, Bruchteile erlaubt (1.5 = 90 min). Wird auf ganze Rasterintervalle aufgerundet. resolution: 'HOURLY' oder 'QUARTER_HOURLY' — im Viertelstundenraster findet es kurze Preissenken und plant Laufzeiten auf 15 min genau. window: 'today', 'tomorrow' oder 'next_24h'. contiguous: True = zusammenhängender Block, False = billigste Einzelstunden. next_24h schließt das laufende Intervall ein — start_hours[0] kann in der Vergangenheit liegen (sofort starten). |
| get_consumptionC | Historischer Verbrauch pro Periode: kWh, Kosten (EUR), Durchschnittspreis. resolution: HOURLY, DAILY, WEEKLY oder MONTHLY. last: Anzahl der letzten Perioden. |
| get_consumption_reportB | Aggregierter Verbrauchs-/Kostenreport mit Vergleich zur Vorperiode. period: 'week', 'month' oder 'year'. offset: 0 = laufende Periode, 1 = vorherige, usw. |
| get_live_measurementA | Live-Messung vom Tibber Pulse: aktuelle Leistung (W), Min/Max im Messfenster, Tagesverbrauch (kWh) und Tageskosten (EUR). Wartet bis zu 15 Sekunden, endet sobald Messwerte vorliegen. Benötigt einen Tibber Pulse am Zähler. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Most tools are clearly distinct: price, forecast, optimization, consumption, and live measurement each target different aspects. The only potential overlap is get_consumption and get_consumption_report, but descriptions clarify raw series vs. pre-aggregated comparison report.
All data-fetching tools follow the get_ noun pattern, and find_cheapest_hours deliberately uses find_ to indicate search/optimization. Naming is consistent snake_case with predictable verb prefixes.
Seven tools cover the core Tibber use cases (home info, prices, forecast, smart consumer scheduling, historical consumption, reports, live measurement) without redundancy or bloat. The count feels perfectly scoped for the server's purpose.
The tool surface covers the realistic Tibber workflow: understanding tariffs/homes, checking current and forecast prices, optimizing consumption timing, reviewing historical usage, and accessing live meter data. No obvious dead ends or missing essential operations for the domain.