Skip to main content
Glama
serafinsanchez

wiz-light-mcp

list_scenes

Read-only

Retrieve all 32 WiZ light scenes with their IDs to select and activate the desired lighting scene.

Instructions

List all 32 available WiZ light scenes with their IDs

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?

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered structurally. The description adds the useful fact that the scene set is a fixed, small collection of 32, but says nothing about ordering, return shape, or whether results can change.

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?

A single front-loaded sentence with no filler; the count and the returned field are the two facts an agent needs and both are stated up front.

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 zero-parameter read-only list tool with no output schema, the description is nearly sufficient: it tells the agent how many items to expect and that IDs come back. Only the exact return shape (e.g., whether names are included) is left implicit, which is minor here.

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 takes zero parameters, which is the baseline-4 case. The schema confirms an empty object and the description is consistent with it, so no compensating parameter detail is needed.

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?

States a specific verb and resource (list scenes) and adds concrete scope detail: the fixed count of 32 and that IDs are included in the result. It is clearly distinguishable from the control siblings like set_scene, though it never names set_scene or list_lights as the contrasting alternative.

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?

There is no explicit when-to-use statement, but mentioning 'with their IDs' implies the intended workflow of looking up IDs before calling set_scene. That is inferred rather than stated, so it sits at minimum-viable guidance.

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