Skip to main content
Glama

setting_set

Destructive

Modify a viewer setting and get before/after values. Some settings persist across restarts.

Instructions

Change a viewer setting and return before/after readback. Some settings persist across restarts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYes
groupNoGlobal
valueYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and openWorldHint=true, so the safety profile is covered. The description adds genuinely new behavioral context: the call returns before/after readback (so results can be verified) and that persistence across restarts is inconsistent. It still does not say why the call is destructive or whether changes are reversible.

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?

Two short, front-loaded sentences with no filler; the primary action and return behavior lead. The qualifier 'Some settings' is deliberately vague but not wasteful.

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

Completeness2/5

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

For a destructive mutation with no output schema and no parameter documentation, the description leaves major gaps: valid key namespace, group semantics, and the consequences/reversibility of the destructive change. The readback and persistence notes help but are not enough to call this complete.

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

Parameters2/5

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

Schema description coverage is 0% for three parameters, and the description says nothing about key, group, or the meaning/validity of value. The 'some settings persist' clause hints that key identity matters but gives no syntax, valid key names, or group semantics, so it fails to compensate for the empty 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?

States a specific verb+resource ('Change a viewer setting') and adds the observable outcome ('return before/after readback'), making it distinguishable from the sibling setting_get. It does not explicitly name a sibling, but the write-vs-read split is obvious from the name pairing.

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?

There is no explicit when-to-use or when-not-to-use guidance and no named alternative (e.g. setting_get for reading). Usage is only implied by the verb 'Change', which an agent must infer.

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