Skip to main content
Glama

Health Sensor Get

health_sensor_get
Read-onlyIdempotent

Get a specific health sensor by ID to access its type, value, and status for a device. Use it to verify monitoring data or troubleshoot sensor issues.

Instructions

Get a specific sensor by ID for a device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesSensor type (e.g. temperature, voltage, fanspeed)
hostnameYesDevice hostname or ID
sensor_idYesSensor ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.9.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe read-only nature is established. The description adds no significant behavioral context beyond the schema, but it also does not contradict the annotations.

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 a single efficient sentence with no filler. It front-loads the action and resource, making it immediately scannable.

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?

Given the tool's simplicity, full schema coverage, output schema, and strong annotations, the description is sufficient for correct invocation. Nothing critical is missing for an agent to select and call the tool.

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%, so every parameter is already documented with type and description. The description only restates the core lookup intent without adding extra semantic depth beyond the schema.

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 verb 'Get' and the resource 'specific sensor by ID for a device,' which is distinct from list-style siblings like health_list and sensors_list. It does not explicitly name a sibling tool, but the focus on a single sensor ID makes the purpose unambiguous.

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

Usage Guidelines3/5

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

The wording implies use when a single sensor is needed by ID, but it does not explicitly state when to prefer this tool over alternatives such as health_by_type or sensors_list. There is no exclusionary or alternative guidance, so usage context is only lightly inferred.

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

Deploy Server

Other Tools