Skip to main content
Glama
hemantkamalakar

Nordic Thingy:52 MCP Server

configure_auto_reconnect

Configure auto-reconnect parameters for the Thingy:52 device by setting enabled status, max attempts, and retry delays to ensure stable connections.

Instructions

Configure auto-reconnect settings.

Args: enabled: Enable or disable auto-reconnect max_attempts: Maximum reconnection attempts (0 = infinite) initial_delay: Initial delay between retries in seconds max_delay: Maximum delay between retries in seconds

Returns: Status message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYes
max_delayNo
max_attemptsNo
initial_delayNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states that settings are configured and a status message is returned, but it does not disclose whether changes apply immediately, persist across sessions, require an active connection, or affect in-progress reconnect attempts.

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 compact and well-structured: a one-line summary, an Args list covering each parameter, and a Returns line. Every line is informative and there is no filler or unnecessary repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple settings tool, the parameter coverage and return mention are adequate, and the output schema presumably covers the return shape. However, the description lacks behavioral and usage context: no side effects, no relation to cancel_reconnect_attempts, and no prerequisites. It is a minimum-viable description rather than a fully contextual one.

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

Parameters5/5

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

Schema description coverage is 0%, so the description is the only source of parameter meaning. It fully compensates by explaining all four parameters: enabled toggles the feature, max_attempts clarifies that 0 means infinite, and the delay parameters specify units and intended role. This goes well beyond the schema's type and default information.

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 tool configures auto-reconnect settings and enumerates the related parameters, so the agent knows what the tool does. It does not explicitly differentiate itself from the related sibling cancel_reconnect_attempts, but the focus on settings rather than attempts makes the purpose reasonably distinct.

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 about when to use this tool versus alternatives or prerequisites. It does not mention cancel_reconnect_attempts or any condition that would make this tool inappropriate, leaving usage to be inferred from the tool name alone.

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