Skip to main content
Glama
hemantkamalakar

Nordic Thingy:52 MCP Server

set_led_color

Set the LED on a Nordic Thingy:52 to a named color or custom RGB values, and adjust brightness to create visual alerts or status indicators.

Instructions

Set the LED to a specific color.

You can either specify a color name (e.g., "red", "blue", "green", "purple") or provide RGB values directly.

Args: color: Named color (e.g., "red", "blue", "green", "purple", "warm_white") red: Red value 0-255 (used if color not specified) green: Green value 0-255 (used if color not specified) blue: Blue value 0-255 (used if color not specified) intensity: Brightness percentage 0-100 (default: 100)

Returns: Status message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
redNo
blueNo
colorNo
greenNo
intensityNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations provided, the description carries the full behavioral burden. It does disclose the core mutation, supported color modes, intensity range/default, and that a status message is returned. However, it does not mention prerequisites like a connected device, error behavior for invalid colors, or what happens if the tool is called with no arguments or conflicting color/RGB values.

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 well structured: purpose is stated first, then the two input modes, then a compact Args list, and finally a return note. Every line adds useful information without 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?

The description covers all parameters and notes the return value, which is adequate for a simple setter. However, it leaves important edge cases unresolved: all five parameters are optional in the schema, and the description does not clarify what happens with no arguments, invalid colors, or unconnected devices. These gaps matter for a hardware LED tool, even with an output schema present.

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 allowed ranges for RGB (0-255), brightness percentage (0-100), the intensity default, and the conditional rule that RGB values are used when a color name is not specified. This gives the agent genuine operational semantics beyond the bare 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 a specific action and resource: 'Set the LED to a specific color.' It also explains the two input modes (named color or RGB). It is distinct from obvious siblings like turn_off_led, but it does not explicitly contrast itself with set_led_breathe, so sibling differentiation is incomplete.

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 provides no guidance on when to use this tool versus alternatives such as set_led_breathe or turn_off_led. It explains how to specify color values, but does not state conditions, prerequisites, or exclusions that would help an agent select between sibling tools.

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