Skip to main content
Glama
serafinsanchez

wiz-light-mcp

set_temperature

Adjust the white color temperature of one or more WiZ bulbs from warm to cool daylight, targeting a bulb, IP, or all lights and optionally setting brightness.

Instructions

Set the color temperature of one or more WiZ bulbs (warm to cool white)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tempYesColor temperature in Kelvin (2200=warm white, 6500=cool daylight)
targetYesBulb name, IP address, or "all" to target every discovered bulb
brightnessNoBrightness level 1-100 (optional)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It does not disclose whether the change is applied atomically across multiple bulbs, what happens to brightness when omitted, whether the setting persists across power cycles, or what errors look like for unreachable bulbs.

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 short sentence, front-loaded with the verb and resource, with no wasted words. Nothing extraneous to trim.

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 mutation tool with no annotations and no output schema, the definition is minimally viable: it says what changes but not the effect on omitted parameters, multi-bulb failure behavior, or confirmation of success. The schema covers inputs fully, so the gap is behavioral rather than structural.

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 the schema already documents target, temp range, and brightness. The description's only parameter-adjacent content ('warm to cool white') duplicates the Kelvin endpoints already spelled out in the temp property.

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?

Specific verb+resource ('Set the color temperature of one or more WiZ bulbs') with the scope of valid values parenthetically stated. It is clearly distinguishable from the sibling set_color, which handles color rather than white-point temperature.

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 purpose implies when it is used (white-temperature control) but there is no explicit when/when-not guidance and the sibling set_color is never named or contrasted. An agent must infer that color temperature and color are mutually exclusive operations.

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