Skip to main content
Glama
wiktorekdev

nuvio-mcp

by wiktorekdev

Mark as watched

nuvio_mark_watched

Mark a movie or episode as watched by adding it to a profile's watch history, with the previous state saved for undo.

Instructions

Add an entry to a profile's watch history. 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?

Annotations already flag this as a mutating, non-idempotent write, and the description adds meaningful context: the previous state is snapshotted before the write and can be reverted with nuvio_undo. This goes beyond the structured fields and does not contradict any annotation.

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 the core action front-loaded and the undo behavior following immediately. There is no filler, and every phrase contributes useful information.

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 write and undo behavior are covered, but for a mutating tool with a nested object and no output schema, it leaves gaps around optional fields like `watched_at`, duplicate-entry behavior, and expected return value. It is minimally viable but not fully self-sufficient.

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%, so the prose needed to compensate for parameter meaning, but it only loosely identifies `item` as the entry and `profile_id` as the profile. It leaves `content_type`, `watched_at`, `season`, and `episode` semantics to the schema, so an agent cannot fully construct a correct call from the description alone.

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 verb and resource: 'Add an entry to a profile's watch history.' This clearly distinguishes it from sibling get/delete watch-history tools and from watch-progress tools. The title reinforces the intent without carrying the definition.

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 gives no explicit when-to-use versus alternatives, such as when to prefer nuvio_set_watch_progress or nuvio_get_watch_history. It mentions nuvio_undo for recovery, but that is a post-write fallback, not guidance for selecting this tool over siblings.

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