Skip to main content
Glama
hemantkamalakar

Nordic Thingy:52 MCP Server

get_device_status

Check the Nordic Thingy:52's current connection status and battery level, including reconnection state and retry count.

Instructions

Get the current device connection status and battery level.

Returns: Connection status including battery level, reconnection state, and retry count

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of disclosing behavior. It does disclose the return contents (battery level, reconnection state, retry count), and 'Get' implies a read-only operation. However, it does not explicitly state that it has no side effects or explain possible failure modes.

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 short and front-loaded with the primary purpose. The 'Returns' line adds useful output details without excessive verbosity, though 'connection status' is mentioned twice.

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 parameterless status getter with no output schema, the description sufficiently covers purpose and return fields. A minor gap is that units for battery level are not specified, but overall the description is adequate for correct invocation.

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, so baseline 4 applies. There is nothing for the description to add beyond what the empty schema already communicates.

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 ('Get') and resource ('device connection status') and adds battery level. It clearly distinguishes itself from sibling tools like connect_device, scan_devices, and read_* sensor tools, which have different purposes.

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 gives no guidance on when to use this tool versus alternatives such as connect_device, disconnect_device, or scan_devices. There is no mention of prerequisites, exclusions, or recommended context for calling it.

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