Skip to main content
Glama

update_library_metadata_by_ids_chapter_thumbs

Idempotent

Generate chapter thumbnails for Plex media items by specifying library IDs. Force option overrides existing conditions.

Instructions

Generate thumbs of chapters for an item.

PUT /library/metadata/{ids}/chapterThumbs

Args: ids: Comma-separated list of IDs force: Force the operation even if conditions are not met

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idsYes
forceNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false, destructiveHint=false, and idempotentHint=true, so the mutation/idempotency profile is covered. The description adds that the operation can be forced, implying there are conditions, but it doesn't explain what those conditions are. No contradiction with annotations; it adds a small amount of behavioral context beyond them.

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?

The description is brief and front-loaded with the core action. The PUT endpoint line provides useful REST context, and the Args section is compact. No filler or redundancy, though the endpoint could be considered somewhat redundant with the tool name. Still, every sentence contributes.

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?

Given the low complexity (2 simple parameters, output schema exists, annotations cover safety/idempotency), the description is mostly complete. It omits details about the conditions under which force is needed and doesn't mention multi-item handling, but these are gaps rather than critical omissions. For a tool of this simplicity, it's adequate.

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

Parameters4/5

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

Schema description coverage is 0%, so the description must compensate. It does explain both parameters: ids as a comma-separated list of IDs and force as a flag to bypass unmet conditions. This adds real meaning beyond the schema, though the conditions for force remain vague. For a 2-parameter tool, this is solid but not exhaustive.

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 clearly states the action: 'Generate thumbs of chapters for an item.' This is a specific verb plus a concrete resource, and the tool name is consistent. It doesn't explicitly differentiate from sibling tools, but the resource (chapter thumbs) is distinct enough. Minor ambiguity remains in 'an item' while the ids parameter accepts a comma-separated list.

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 guidance on when this tool should be used rather than a sibling, no prerequisites, and no exclusions. The description simply states what it does without contextual routing. Siblings like update_library_metadata_by_ids_analyze or _intro are not mentioned, so an agent gets no help choosing among them.

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