Skip to main content
Glama
wiktorekdev

nuvio-mcp

by wiktorekdev

Add to library

nuvio_add_to_library

Add or update an item in a Nuvio profile library, snapshotting the previous state to enable undo.

Instructions

Add or update an item in a profile's library. The previous state is snapshotted before the write; revert with nuvio_undo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemYes
profile_idNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior4/5

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

The description adds valuable side-effect information beyond the annotations: the previous state is snapshotted before the write and can be reverted with nuvio_undo. This is meaningful context because the annotations only provide generic hints and do not mention undo behavior.

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, front-loaded with the core action and scoped to a profile's library. The second sentence adds an important revert note without unnecessary detail. Every clause earns its place.

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 the operation and its key undo behavior, and the schema supplies required fields and types. However, without parameter descriptions or an output schema, an agent must infer the meaning of content_id/content_type and cannot anticipate the response shape. This is a noticeable gap for a nested-object write tool.

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

Parameters1/5

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

Schema description coverage is 0%, and the description provides no parameter-level semantics. It does not explain what makes a valid item, how content_id/content_type identify the item, or what profile_id refers to. The property names in the schema are suggestive, but the description itself fails to compensate for the lack of schema descriptions.

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 uses a specific verb-resource pair: 'Add or update an item in a profile's library.' It clearly separates this mutation tool from sibling read/removal tools like nuvio_get_library and nuvio_remove_from_library. There is no tautology or ambiguity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly states when to use the tool: to add or update an item in a profile's library. It does not explicitly name alternatives or exclusion conditions, but the usage context is clear and no misleading guidance is present.

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