Skip to main content
Glama
dornansgar390-hue

energy-oracle

Oracle Status

get_oracle_status
Read-onlyIdempotent

Check if the oracle is ACTIVE or in MAINTENANCE and retrieve the current number of active subscribers.

Instructions

Check if the oracle is ACTIVE or in MAINTENANCE, and the number of active subscribers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context by naming the two observable states (ACTIVE/MAINTENANCE) and the active-subscriber count, which is not visible in the annotations or the empty schema.

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?

One compact sentence communicates both what is checked and what is returned, with no filler or repetition of the schema. It is front-loaded and every word earns its place.

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 parameterless, read-only status tool with an output schema and rich annotations, the description provides all essential invocation context. An agent can select and call it correctly without needing further detail.

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?

The tool has zero parameters and schema coverage is 100%, so there is nothing for the description to explain. This matches the baseline of 4 for no-parameter tools.

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 a specific verb ('Check') and resource ('the oracle'), and clarifies the exact result: whether the oracle is ACTIVE or in MAINTENANCE plus the number of active subscribers. This clearly distinguishes it from siblings like get_oracle_info or check_subscription without needing to inspect them.

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 doesn't state when to use this tool versus alternatives like get_oracle_info, get_connection_info, or check_subscription. It implies a status-checking purpose but gives no explicit conditions, prerequisites, or exclusions, leaving the agent to infer selection criteria.

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