Skip to main content
Glama
wiktorekdev

nuvio-mcp

by wiktorekdev

Unset a nested setting

nuvio_unset_setting

Remove a nested setting value by dot path, with a snapshot taken for undoing the change.

Instructions

Delete one nested value by dot path from the settings blob. The previous state is snapshotted before the write; revert with nuvio_undo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
platformNoPlatform namespace: tv | mobile | desktop | webtv
profile_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already mark this as a write rather than destructive. The description adds the key behavior that the previous state is snapshotted before the write and that nuvio_undo can revert it, which justifies the non-destructive classification and gives the agent a recovery path.

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?

Two sentences with no filler: the first states the operation and mechanism, the second states the snapshot/undo behavior. The most important information is front-loaded and every sentence earns its place.

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 simple single-path mutation, the combination of description and schema is nearly complete: it defines the path mechanism, the platform default and allowed values, and the undo path. It does not state behavior when the path doesn't exist or describe the return value, but those are minor for this tool, especially with no output schema.

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 only 33%, with platform documented in the schema but path and profile_id not described. The description adds meaning only to path ('dot path') and says nothing about what profile_id selects or how platform scopes the settings blob, so it fails to compensate for the low schema coverage.

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?

The description opens with a specific action ('Delete'), a precise resource ('one nested value' in 'the settings blob'), and the mechanism ('by dot path'). This clearly distinguishes it from siblings like nuvio_set_setting without requiring schema inspection.

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 description implies when to use it: to remove a single nested setting rather than set or bulk-update settings. However, it never explicitly names alternatives or gives exclusion criteria, leaving the routing partly to inference.

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

Deploy Server

Other Tools