Skip to main content
Glama

GridHub Electricity Market Data

Latest values for a zone

get_latest
Read-onlyIdempotent

The most recent value of every metric one zone publishes (price and demand for every zone; generation by fuel for GB and US-CAISO; carbon intensity for GB; interchange where available), each with unit and timestamp. This is the right tool for 'what is the price/demand/carbon intensity in X right now'. Note: some European sources publish day-ahead prices, so the price timestamp can be up to ~36h in the future; use get_zone_brief for a strictly at-or-before-now value with historical context. Authentication: send 'Authorization: Bearer ' on the MCP connection (free key, 500 requests/day, instant email signup at https://grid-hub.app/developers), or pay per call with x402 (USDC on Base) via the X-PAYMENT header. With no credentials, data tools run in free sample mode: real, current data but truncated (history capped at 50 rows; brief returns one context block). Sample results are clearly marked.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
zoneYesZone id. US ISOs: US-CAISO, US-ERCOT, US-PJM, US-MISO, US-NYISO, US-ISONE, US-SPP. Europe: DE-LU, FR, ES, IT-NO, NL, BE, PL, SE-3, NO-2, DK-1, AT, CH. Great Britain: GB. Australia (NEM): AU-NSW, AU-QLD, AU-VIC, AU-SA, AU-TAS. Call list_zones for names, sources, currencies and licences.
api_keyNoOptional GridHub API key (ghk_...). Prefer sending it as an 'Authorization: Bearer <key>' HTTP header on the MCP connection; use this argument only if your client cannot set headers. Without a key the tool runs in free sample mode (truncated output).

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description goes beyond annotations by disclosing the day-ahead pricing quirk (timestamps up to ~36h in the future), authentication requirements and rate limits, and free sample-mode truncation behavior. The only minor gap is that there is no explicit statement about pagination or output shape, but that is adequately handled by the stated timestamp and unit disclosure and the absence of an output schema.

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

Conciseness4/5

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

The description is front-loaded with the core scope and use case, then adds a caveat, a sibling pointer, and auth/sample-mode notes in a logical order. It is longer than the minimum, but every sentence earns its place: the day-ahead caveat prevents a real misunderstanding, and the credential guidance affects whether the api_key parameter is required. A small bit of tightening could remove the repeated authentication detail, but it is not bloated.

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 lookup tool with complete schema documentation, the description covers the main agent needs: what data is returned, which sibling to choose instead, the odd timestamp behavior, and the auth/sample-mode fallback. It could additionally note that returned timestamps may vary by metric or explain the exact JSON shape, but those are not necessary for correct selection and invocation of a list-style current-value endpoint.

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

Parameters3/5

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

Schema description coverage is 100%: the zone parameter has a full enum list and a call-to-list_zones note, and api_key has a thorough description of header-vs-argument usage. The description adds valuable context about what metrics are included per zone, but it doesn't materially extend the schema's already complete parameter documentation. Baseline 3 is appropriate when the schema does the heavy lifting.

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 names the exact resource ('most recent value of every metric one zone publishes'), enumerates the metric types per region, and includes a quoted use case that tells the agent when it is the right tool. It differentiates itself from get_zone_brief by noting the day-ahead price caveat, so an agent can distinguish between the two at a glance.

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

Usage Guidelines5/5

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

The description says this is 'the right tool for' real-time queries and explicitly tells the agent to use get_zone_brief when a strictly at-or-before-now value with historical context is needed. It also gives credential guidance and explains what happens without credentials, so the agent knows when an api_key parameter is needed versus optional.

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
Disambiguation4/5

Most tools have clearly distinct purposes: history, latest values, map-wide snapshot, health status, zone brief, and zone metadata. There is some overlap among get_latest, get_zone_brief, and get_map_snapshot for current values, but the descriptions explicitly differentiate raw latest values, interpreted briefs, and multi-zone comparisons.

Naming Consistency5/5

The tool names follow a consistent get_ noun pattern, with list_zones as a natural metadata-list exception. The naming is predictable and makes the resource each tool targets immediately clear.

Tool Count5/5

Six tools is well-scoped for a read-only electricity market data server. Each tool covers a distinct retrieval need—metadata, history, latest values, snapshots, summaries, and health—without redundant or filler tools.

Completeness5/5

The surface covers the full read-only workflow: discovering zones, fetching raw history, getting current values, comparing zones, obtaining interpretation-ready context, and checking data freshness. No obvious missing operations exist for the stated domain.