Skip to main content
Glama
umsachde

simkl-mcp

by umsachde

set_status

Move titles into a Simkl watchlist status such as watching, plan to watch, hold, completed, or dropped, with automatic handling for movies and airing series.

Instructions

Move titles into a watchlist status.

status: watching, plantowatch, hold, completed or dropped.

Two behaviours worth knowing: movies have no watching or hold, and writing completed for a still-airing show silently becomes watching.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYes
itemsYes
statusYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and it delivers two genuinely useful behavioral disclosures: movies do not support watching/hold, and completed silently becomes watching for still-airing shows. This goes well beyond the schema, though it omits details like overwrite behavior, permissions, or return semantics.

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?

The description is compact and well-fragmented into purpose, valid values, and edge cases. Every sentence adds value, and the most important behavioral caveats are clearly highlighted.

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 status values and notable edge behavior, giving an agent useful invocation context despite the opaque schema. It is not fully complete because the type parameter is unexplained and there is no guidance on the shape or required fields of items, so an agent may still guess incorrectly on first call.

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

Parameters3/5

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

The description adds meaning to the status parameter by listing valid values, which the schema does not provide. But it says nothing about the required type parameter or how items should be structured, leaving significant parameter semantics uncovered at 0% schema coverage.

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?

The description states a specific action ('Move titles into a watchlist status') and lists the valid status values, making the resource and operation clear. It does not explicitly contrast itself with siblings like mark_watched, but the 'watchlist status' framing distinguishes it from related tools.

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 makes the intended use context clear: updating a title's watchlist status. However, it does not state when to prefer this tool over siblings such as mark_watched or remove_from_history, nor does it mention any exclusions or prerequisites.

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